Initial Commit. Split cloud service from the combined project
This commit is contained in:
14
cloud_backend/.env.example
Normal file
14
cloud_backend/.env.example
Normal file
@@ -0,0 +1,14 @@
|
||||
# Cloud Backend — copy this to .env and fill in values
|
||||
|
||||
# Generate with: python -c "import secrets; print(secrets.token_hex(32))"
|
||||
SECRET_KEY=change-me-generate-a-long-random-string
|
||||
|
||||
# SQLite for local dev. Switch to postgresql://user:pass@host/dbname for VPS.
|
||||
DATABASE_URL=sqlite:////app/data/cloud.db
|
||||
|
||||
# JWT expiry in minutes
|
||||
ACCESS_TOKEN_EXPIRE_MINUTES=60
|
||||
|
||||
# Default sysadmin credentials (created on first startup if admin table is empty)
|
||||
ADMIN_USERNAME=sysadmin
|
||||
ADMIN_PASSWORD=changeme
|
||||
Reference in New Issue
Block a user