Drop deploy.sh, scripts/setup-service.sh, and migrate/ — all superseded by manage.py. Remove leftover Vite template assets (App.css, hero.png, react.svg, vite.svg), none of which are imported. Hoist the database/queries/ file list in manage.py to a module-level QUERY_FILES constant so configure and deploy-functions share one definition, and add the stacks/status query files that were missing from it. Swap npm start/dev so start runs node and dev runs nodemon. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
33 lines
324 B
Plaintext
33 lines
324 B
Plaintext
# Environment
|
|
.env
|
|
|
|
# Dependencies
|
|
node_modules/
|
|
ui/node_modules/
|
|
package-lock.json
|
|
ui/package-lock.json
|
|
|
|
# UI build output (generated — run `cd ui && npm run build`)
|
|
public/
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.pyc
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Scratch data exports
|
|
/*.tsv
|