18 lines
601 B
Plaintext
18 lines
601 B
Plaintext
# 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
|
|
|
|
# The current latest release version — clients compare against this to detect updates
|
|
LATEST_VERSION=0.0.0
|