Add example .env

This commit is contained in:
Cara Salter 2022-12-06 15:05:40 -05:00
parent a941c1bf1e
commit d19a8b9c59
No known key found for this signature in database
GPG key ID: 90C66610C82B29CA
2 changed files with 18 additions and 0 deletions

2
.gitignore vendored
View file

@ -4,6 +4,8 @@ config_hackWPI.py
config.py
admin/*.json
admin/*.csv
goathacks/config.py
# Created by https://www.gitignore.io/api/web,vim,git,macos,linux,bower,grunt,python,pycharm,windows,eclipse,webstorm,intellij,jetbrains,virtualenv,visualstudio,visualstudiocode
# Dev ENV Stuff

View file

@ -0,0 +1,16 @@
SQLALCHEMY_DATABASE_URI="postgresql://localhost/goathacks"
MAX_BEFORE_WAITLIST=1
SECRET_KEY="bad-key-change-me"
UPLOAD_FOLDER="./uploads/"
# 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>"