mirror of
https://github.com/seanmorley15/AdventureLog.git
synced 2026-02-07 05:10:58 -05:00
54 lines
1.9 KiB
Plaintext
54 lines
1.9 KiB
Plaintext
# URL Configuration
|
|
APP_URL=http://localhost:8015
|
|
APP_PORT=8015
|
|
|
|
BODY_SIZE_LIMIT=Infinity
|
|
|
|
# 🐘 PostgreSQL Database
|
|
PGHOST=db
|
|
POSTGRES_DB=database
|
|
POSTGRES_USER=adventure
|
|
POSTGRES_PASSWORD=changeme123
|
|
|
|
# 🔒 Django Backend
|
|
SECRET_KEY=changeme123
|
|
DJANGO_ADMIN_USERNAME=admin
|
|
DJANGO_ADMIN_PASSWORD=admin
|
|
DJANGO_ADMIN_EMAIL=admin@example.com
|
|
DEBUG=False
|
|
|
|
# Optional: use Google Maps integration
|
|
# https://adventurelog.app/docs/configuration/google_maps_integration.html
|
|
# GOOGLE_MAPS_API_KEY=your_google_maps_api_key
|
|
|
|
# Optional: disable registration
|
|
# https://adventurelog.app/docs/configuration/disable_registration.html
|
|
DISABLE_REGISTRATION=False
|
|
# DISABLE_REGISTRATION_MESSAGE=Registration is disabled for this instance of AdventureLog.
|
|
|
|
# SOCIALACCOUNT_ALLOW_SIGNUP=False # When false, social providers cannot be used to create new user accounts when registration is disabled.
|
|
|
|
# FORCE_SOCIALACCOUNT_LOGIN=False # When true, only social login is allowed (no password login) and the login page will show only social providers or redirect directly to the first provider if only one is configured.
|
|
|
|
# ACCOUNT_EMAIL_VERIFICATION='none' # 'none', 'optional', 'mandatory' # You can change this as needed for your environment
|
|
|
|
# Optional: Use email
|
|
# https://adventurelog.app/docs/configuration/email.html
|
|
# EMAIL_BACKEND=email
|
|
# EMAIL_HOST=smtp.gmail.com
|
|
# EMAIL_USE_TLS=True
|
|
# EMAIL_PORT=587
|
|
# EMAIL_USE_SSL=False
|
|
# EMAIL_HOST_USER=user
|
|
# EMAIL_HOST_PASSWORD=password
|
|
# DEFAULT_FROM_EMAIL=user@example.com
|
|
|
|
# Optional: Use Strava integration
|
|
# https://adventurelog.app/docs/configuration/strava_integration.html
|
|
# STRAVA_CLIENT_ID=your_strava_client_id
|
|
# STRAVA_CLIENT_SECRET=your_strava_client_secret
|
|
|
|
# Optional: Use Umami for analytics
|
|
# https://adventurelog.app/docs/configuration/analytics.html
|
|
# PUBLIC_UMAMI_SRC=https://cloud.umami.is/script.js # If you are using the hosted version of Umami
|
|
# PUBLIC_UMAMI_WEBSITE_ID= |