Files
website-v2/env.template
Natalia 762975930d Initial setup to have a mailman server running
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.
2023-05-04 22:59:11 -03:00

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