21 lines
679 B
Plaintext
21 lines
679 B
Plaintext
|
|
# Copy this file to .env and fill in real values.
|
||
|
|
# .env is gitignored — never commit secrets.
|
||
|
|
|
||
|
|
SECRET_KEY=change-me-to-a-long-random-string
|
||
|
|
|
||
|
|
DB_PASSWORD=change-me-db-password
|
||
|
|
|
||
|
|
# Google OAuth — https://console.developers.google.com/
|
||
|
|
GOOGLE_CLIENT_ID=
|
||
|
|
GOOGLE_CLIENT_SECRET=
|
||
|
|
|
||
|
|
# GitHub OAuth — https://github.com/settings/developers
|
||
|
|
GITHUB_CLIENT_ID=
|
||
|
|
GITHUB_CLIENT_SECRET=
|
||
|
|
|
||
|
|
# Email confirmation for local accounts.
|
||
|
|
# Set to "true" to require users to click a confirmation link before logging in.
|
||
|
|
# When "false" (default), accounts are activated immediately.
|
||
|
|
# The confirmation URL is always printed to Docker logs regardless of this setting.
|
||
|
|
EMAIL_CONFIRMATION_REQUIRED=false
|