Skip to content

Commit af9cae2

Browse files
committed
📚 Document generic placeholder approach in README
✅ TEMPLATE PHILOSOPHY UPDATED: - Documents justfile.template generic placeholders - Explains the three customizable command types: - {{DATA_DOWNLOAD_COMMAND}} - Project data download logic - {{DBT_RUN_COMMAND}} - dbt run with project variables - {{DBT_TEST_COMMAND}} - dbt test with project variables ✅ CLEAR SEPARATION: - .github/ = STABLE (CI/CD framework) - .squirro/ = SQUIRRO-SPECIFIC (integration tools) - deployment/ = CUSTOMIZABLE (config files) - justfile.template = GENERIC (task structure with placeholders) Template now provides true genericity while maintaining structure.
1 parent 8f739c3 commit af9cae2

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

‎README.md‎

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,12 @@ git push origin main
159159
## Template Philosophy
160160

161161
- **`.github/` = STABLE** - Rarely changes, provides consistent CI/CD
162+
- **`.squirro/` = SQUIRRO-SPECIFIC** - Tools and workflows for Squirro integration
162163
- **`deployment/` = CUSTOMIZABLE** - Projects modify configuration files
164+
- **`justfile.template` = GENERIC** - Uses placeholders for project-specific commands:
165+
- `{{DATA_DOWNLOAD_COMMAND}}` - How to download your project's data
166+
- `{{DBT_RUN_COMMAND}}` - How to run dbt with your data variables
167+
- `{{DBT_TEST_COMMAND}}` - How to test dbt with your data variables
163168
- **Clear separation** - Teams know exactly what to customize vs what to keep
164169

165170
## Examples

0 commit comments

Comments
 (0)