Files
social-media/docs/DEVELOPMENT_WORKFLOW.md
Jonathan Bourdon b6eb692c27
Some checks failed
Backend CI/CD / build_and_deploy (push) Has been cancelled
Frontend CI/CD / build_and_deploy (push) Has been cancelled
chore: moving towards agentic development
2026-04-24 21:12:26 -04:00

973 B

Development Workflow

Before Coding

Read:

  1. README.md
  2. AGENTS.md
  3. docs/ARCHITECTURE.md
  4. docs/AGENTIC_WORKFLOW.md
  5. docs/DEVELOPMENT_WORKFLOW.md
  6. Relevant feature spec in docs/FEATURES/
  7. Relevant task file in docs/TASKS/

Backend

./scripts/start-infrastructure.sh
./scripts/dev-backend.sh

Backend URL:

http://localhost:5080

Swagger UI:

http://localhost:5080/api

Frontend

./scripts/dev-frontend.sh

Frontend URL:

http://localhost:5173

API Model Sync

When backend request/response models change:

./scripts/update-openapi.sh

Then check frontend build errors.

Validation

dotnet build backend/Socialize.slnx
dotnet test backend/Socialize.slnx
cd frontend && npm run build

Commit Discipline

Use Conventional Commits:

git commit -m "feat: add content approval request flow"
git commit -m "docs: add agentic workflow tasks"