Development Workflow¶
Daily Development¶
- Start infrastructure:
docker-compose up -d - Run AppHost:
cd src/Cargonerds.AppHost && dotnet run - Make changes in your IDE
- Test changes
- Commit to Git
Best Practices¶
- Run tests before committing
- Follow ABP patterns
- Use dependency injection
- Write meaningful commit messages
See Testing for testing guidelines.