-
Notifications
You must be signed in to change notification settings - Fork 1
Environment Variables
PRODUCTION set to true for sane defaults when running in production.
DEBUG enables Django debug mode .
Set when PRODUCTION is not set.
SECRET_KEY a random value for cryptographic signing by Django .
REGISTRATION_TOKEN a random string used to prevent registration by random people.
If set, users cannot access the registration page without knowing the token.
It must be set as the GET parameter token when opening the registration page.
E.g. if the token for hackerforce.example.com is mytoken, then new users
would register at hackerforce.example.com/register/?token=mytoken .
If not set, anyone can register from the home page.
FROM_EMAIL the address emails HackerForce sends appear to come from.
REPLY_TO_EMAIL the address responses to your emails are sent to.
BCC_EMAIL An address all emails you send are sent to.
SENDGRID_API_KEY set if you want to send emails through SendGrid .
AWS_ACCESS_KEY_ID set if you want to send emails through AWS Simple Email Service .
DATABASE_URL the location of the database used by HackerForce.
Consumed by dj_database_url .
SPONSORSHIP_PACKET_URL
The URL for the sponsorship packet, to download if SPONSORSHIP_PACKET_FILE
does not exist in the filesystem.
SPONSORSHIP_PACKET_FILE
The local name of the sponsorship packet, to be stored in the website/static
folder. If this file exists, it will be used. Otherwise, it will be
re-downloaded from SPONSORSHIP_PACKET_URL.
It defaults to sponsorship.pdf.