Captures backend work already running on godstrument.pro but never committed: - auth.py: invite-only accounts + per-user presets (SQLite, scrypt, signed stateless sessions), mounted by hub.py at /api/* - hub.py: /api static+API handler, readonly public mode, full route spec in hello - socio-economic / market / fire / debt / crypto workers + normalize/transform - .gitignore: never commit godstrument_users.db* or auth_secret - test_fixes.py: framework-free self-check for the review fixes Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
22 lines
350 B
Plaintext
22 lines
350 B
Plaintext
# python
|
|
.venv/
|
|
__pycache__/
|
|
*.pyc
|
|
|
|
# local recordings / db (regenerable)
|
|
godstrument.db
|
|
godstrument.db-wal
|
|
godstrument.db-shm
|
|
|
|
# user-saved templates (runtime, per-machine)
|
|
patches/
|
|
|
|
# accounts db + session secret — NEVER commit (user credentials)
|
|
godstrument_users.db
|
|
godstrument_users.db-wal
|
|
godstrument_users.db-shm
|
|
auth_secret
|
|
|
|
# os
|
|
.DS_Store
|