mirror of
https://github.com/boostorg/website-v2.git
synced 2026-01-19 04:42:17 +00:00
- Adds functions to retrieve raw events from the Google Calendar API, extract the data we need for those events, and order those events by month for display - Documents the new env vars - Adds new setting for the google calendar API url - Adds `/calendar/` to URLs, which displays the rendered google calendar **but didn't prettify it** - Adds events to homepage, using the existing template - Edits to the homepage template to show the events and make the paging arrows work
38 lines
833 B
Plaintext
38 lines
833 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="boost.revsys.dev"
|
|
|
|
|
|
# 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
|
|
|
|
# Celery settings
|
|
CELERY_BROKER=redis://redis:6379/0
|
|
CELERY_BACKEND=redis://redis:6379/0
|
|
|
|
CALENDAR_API_KEY=changeme
|