973 B
973 B
Development Workflow
Before Coding
Read:
README.mdAGENTS.mddocs/ARCHITECTURE.mddocs/AGENTIC_WORKFLOW.mddocs/DEVELOPMENT_WORKFLOW.md- Relevant feature spec in
docs/FEATURES/ - 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"