feat: add .env.j2 template for scaffolded projects#395
Conversation
- Add .env.j2 template that generates proper .env file during scaffolding - Remove .env from _skip_if_exists to allow generation - Include database URLs, project info, and development settings - Generate unique secret key based on project slug
|
Claude finished @davidpoblador's task —— View job Code Review Complete ✅SummaryThis PR successfully addresses the missing ✅ StrengthsProblem Solving:
Template Quality (
Development Workflow Integration:
|
- Add back _skip_if_exists for .env to avoid overwriting custom environment files - New projects still get .env generated since it doesn't exist initially - Existing projects with custom .env files are preserved during updates
|
Claude finished @davidpoblador's task —— View job Code Review Complete ✅Reviewing PR #395: feat: add .env.j2 template for scaffolded projects Todo List:
✅ Overall AssessmentThis PR successfully addresses the scaffolding issue where projects were missing the required 📋 Detailed Review1. Code Quality & Best Practices ✅
2. Security Analysis
|
🤖 I have created a release *beep* *boop* --- ## [2.16.0](v2.15.2...v2.16.0) (2025-11-08) ### Features * add .env.j2 template for scaffolded projects ([#395](#395)) ([da335b5](da335b5)) * add mongo and redis services to compose.dev.yml ([#397](#397)) ([9c299f9](9c299f9)) * integrate docs publishing into unified publish workflow ([#401](#401)) ([e615b43](e615b43)) ### Code Refactoring * simplify template structure and improve organization ([#398](#398)) ([16f1b27](16f1b27)) ### Miscellaneous Chores * **deps:** update mongo docker tag to v8.2 ([#400](#400)) ([f3c9f46](f3c9f46)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Summary
Fixes the issue where scaffolded projects were missing .env file required by compose.dev.yml, preventing
just devfrom working properly.Behavior
Testing
just devcan now find and load the generated .env file