Skip to content

Development Workflow

Daily Development

  1. Start infrastructure: docker-compose up -d
  2. Run AppHost: cd src/Cargonerds.AppHost && dotnet run
  3. Make changes in your IDE
  4. Test changes
  5. Commit to Git

Best Practices

  • Run tests before committing
  • Follow ABP patterns
  • Use dependency injection
  • Write meaningful commit messages

See Testing for testing guidelines.