You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Leave value blank or comment out to disable properties.
#####
##### App / General
#####
NODE_ENV=development
LOG_LEVEL=info
#####
##### API
#####
API_PORT=1999
API_PREFIX=/api
API_VERSION=/v2
API_ALLOWED_CORS_ORIGINS=http://localhost:3999
# REQUIRED: Must be a valid UUID (the API will not start without a valid UUID)
# Generate one using: uuidgen (macOS/Linux) or https://www.uuidgenerator.net/
AUTH_JWT_SECRET=
USER_AGENT="Podverse Bot Local/Management-API/5" # in prod change to "Podverse Bot/Management-API/5", in alpha change to "Podverse Bot Alpha/Management-API/5", etc.
# Use the public facing domain, not the internal docker network ip address.
COOKIE_DOMAIN=localhost # prefix with a dot for subdomains, e.g. .podverse.fm or .beta.podverse.fm
#####
##### Postgres
#####
DB_HOST=localhost
DB_PORT=5999
DB_READ_USERNAME=
DB_READ_PASSWORD=
DB_READ_WRITE_USERNAME=
DB_READ_WRITE_PASSWORD=
DB_DATABASE=postgres
DB_SSL_CONNECTION=
#####
##### Website related
#####
### NOTE: these are for the *public facing* IP addresses,
### not the internal Docker service network or private IP addresses.