Cloudflare fronts monsterrobot.games and serves the modules with max-age=14400, so a redeploy left you running four-hour-old code — the same staleness the dev server's /v<timestamp>/ prefix exists to prevent, just moved upstream. deploy.sh now purges the deployed paths, reading CF_API_TOKEN from deploy/.env (gitignored) at run time, and warns loudly rather than failing when it isn't set. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
22 lines
274 B
Plaintext
22 lines
274 B
Plaintext
# python
|
|
__pycache__/
|
|
*.py[cod]
|
|
|
|
# macos
|
|
.DS_Store
|
|
|
|
# editors
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
|
|
# claude local overrides (launch.json IS committed — it's how the dev server starts)
|
|
.claude/settings.local.json
|
|
|
|
# scratch
|
|
test/tmp/
|
|
*.log
|
|
|
|
# deploy secrets — never commit
|
|
deploy/.env
|