20 lines
866 B
Bash
20 lines
866 B
Bash
# Cyclone — environment configuration
|
|
# Copy this file to `.env.local` and fill in values for your environment.
|
|
|
|
# Required on first boot. Cyclone refuses to start without these unless
|
|
# at least one user already exists (e.g. seeded via `python -m cyclone users create`).
|
|
# Min 12 chars for password.
|
|
CYCLONE_ADMIN_USERNAME=admin
|
|
CYCLONE_ADMIN_PASSWORD=change-me-to-a-strong-password-min-12-chars
|
|
|
|
# Base URL for the Python (FastAPI) backend. Leave empty for the
|
|
# Docker deployment (nginx proxies /api/* to backend on compose network).
|
|
VITE_API_BASE_URL=
|
|
|
|
# Optional. Set to 1 if you're behind an HTTPS reverse proxy and want
|
|
# the session cookie to include the Secure flag.
|
|
# CYCLONE_BEHIND_HTTPS=1
|
|
|
|
# Optional. Set to 1 to disable auth entirely (DEV ONLY). When set,
|
|
# the backend auto-grants admin access without checking credentials.
|
|
# CYCLONE_AUTH_DISABLED=0 |