
Add the following user commands: - list - autopromote List will list all users as a table, useful for debugging things without pulling out the database or the admin page Autopromote will automatically promote and email users off the waitlist until capacity is reached
18 lines
349 B
Text
18 lines
349 B
Text
SQLALCHEMY_DATABASE_URI="postgresql://localhost/goathacks"
|
|
MAX_BEFORE_WAITLIST=1
|
|
SECRET_KEY="bad-key-change-me"
|
|
|
|
UPLOAD_FOLDER="./uploads/"
|
|
|
|
DISCORD_LINK=None
|
|
|
|
|
|
# Mail settings
|
|
MAIL_SERVER="localhost"
|
|
MAIL_PORT=25
|
|
MAIL_USE_TLS=False
|
|
MAIL_USE_SSL=False
|
|
MAIL_USERNAME="dummy"
|
|
MAIL_PASSWORD="dummy"
|
|
MAIL_DEFAULT_SENDER="GoatHacks Team <hack@wpi.edu>"
|
|
|