Tracking PR for registration rewrite #5
2 changed files with 18 additions and 0 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -4,6 +4,8 @@ config_hackWPI.py
|
||||||
config.py
|
config.py
|
||||||
admin/*.json
|
admin/*.json
|
||||||
admin/*.csv
|
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
|
# 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
|
# Dev ENV Stuff
|
||||||
|
|
16
goathacks/config.py.example
Normal file
16
goathacks/config.py.example
Normal 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>"
|
||||||
|
|
Loading…
Add table
Reference in a new issue