mirror of
https://github.com/boostorg/website-v2.git
synced 2026-01-19 04:42:17 +00:00
This includes running containers for mailman-core and mailman-web, both connecting to the same database used by the boost web site. The branch proposes a minor refactoring for the shared usage of the compose-start.sh script, allowing both the boost web server and the mailman-web server to wait for the db, run migrations, collect assets and run the django devserver.
31 lines
714 B
Plaintext
31 lines
714 B
Plaintext
# Database settings
|
|
PGDATABASE=postgres
|
|
PGHOST=db
|
|
PGPASSWORD=""
|
|
PGPORT=5432
|
|
PGUSER=postgres
|
|
|
|
# ALLOWED_HOSTS can be a comma-delimited string/list of host names
|
|
ALLOWED_HOSTS=localhost
|
|
|
|
# Set DJANGO_DEBUG = 0 to turn off Debug
|
|
DJANGO_DEBUG=1
|
|
|
|
# Don't use this secret key in production obviously
|
|
SECRET_KEY="top-secret"
|
|
|
|
GITHUB_TOKEN="top-secret"
|
|
|
|
AWS_ACCESS_KEY_ID="changeme"
|
|
AWS_SECRET_ACCESS_KEY="changeme"
|
|
BUCKET_NAME="stage.boost.org"
|
|
|
|
# Mailman database settings
|
|
DATABASE_URL="postgresql://postgres@db:5432/postgres"
|
|
DATABASE_TYPE="postgres"
|
|
DATABASE_CLASS="mailman.database.postgresql.PostgreSQLDatabase"
|
|
HYPERKITTY_API_KEY="changeme!"
|
|
MAILMAN_ADMIN_USER=""
|
|
MAILMAN_ADMIN_EMAIL=""
|
|
SERVE_FROM_DOMAIN=localhost
|