add in-line docs to env
This commit is contained in:
+31
-12
@@ -1,20 +1,39 @@
|
||||
APP_KEY= # Generate a secure key using `openssl rand -base64 32`
|
||||
APP_TIMEZONE=UTC # Timezone used internally
|
||||
APP_PORT=8000 # Port for NGINX to listen on
|
||||
APP_URL="http://localhost:${APP_PORT}" # Used internally to generate absolute links
|
||||
ASSET_URL="${APP_URL}" # Webroot for static assets (css, js, images, etc)
|
||||
REGISTRATION_ENABLED=true # Enable or disable new user registration
|
||||
# Generate a secure key using `openssl rand -base64 32`
|
||||
APP_KEY=
|
||||
|
||||
AI_CHAT_ENABLED=false # Enable or disable AI chat feature
|
||||
OPENAI_API_KEY= # API key for OpenAI (for Llama support, see docs)
|
||||
OPENAI_ORGANIZATION= # Org ID for OpenAI
|
||||
# Timezone used internally
|
||||
APP_TIMEZONE=UTC
|
||||
|
||||
MARKET_DATA_PROVIDER=yahoo # Market data provider to use (comma separated list)
|
||||
MARKET_DATA_REFRESH=30
|
||||
DAILY_CHANGE_TIME=
|
||||
# Port for NGINX to listen on
|
||||
APP_PORT=8000
|
||||
|
||||
# Used internally to generate absolute links
|
||||
APP_URL="http://localhost:${APP_PORT}"
|
||||
|
||||
# Webroot for static assets (css, js, images, etc)
|
||||
ASSET_URL="${APP_URL}"
|
||||
|
||||
# Enables or disables new user registration
|
||||
REGISTRATION_ENABLED=true
|
||||
|
||||
# Enable or disable AI chat feature
|
||||
AI_CHAT_ENABLED=false
|
||||
|
||||
# API key for OpenAI (for Llama support, see docs)
|
||||
OPENAI_API_KEY=
|
||||
OPENAI_ORGANIZATION=
|
||||
|
||||
# Market data provider to use (comma separated list)
|
||||
MARKET_DATA_PROVIDER=yahoo
|
||||
ALPHAVANTAGE_API_KEY=
|
||||
FINNHUB_API_KEY=
|
||||
|
||||
# Cadence to refresh market data (in minutes)
|
||||
MARKET_DATA_REFRESH=30
|
||||
DAILY_CHANGE_TIME=
|
||||
|
||||
#### Advanced configurations ####
|
||||
|
||||
ENABLED_LOGIN_PROVIDERS=
|
||||
GITHUB_CLIENT_ID=
|
||||
GITHUB_CLIENT_SECRET=
|
||||
|
||||
Reference in New Issue
Block a user