This commit is contained in:
Eric Myllyoja
2021-12-07 14:06:21 -05:00
parent feb1fc586c
commit 639302a55c
5 changed files with 159 additions and 74 deletions

View File

@@ -0,0 +1,5 @@
# Make sure this is a long random string
SECRET_KEY = 'long-random-string'
# Replace instances of <> with the database credentials
DB_URL = 'mysql+pymysql://<mysql-user>:<mysql-password>@<mysql-host>/<mysql-database>'

View File

@@ -0,0 +1,8 @@
# Path to the logo image to display on the application
LOGO = 'logo/logo.png'
# Path to the privacy policy users have to agree to
PRIVACY_POLICY = 'policy/Privacy Policy.pdf'
# Path to the terms of use users have to agree to
TERMS_OF_USE = 'policy/Terms of Use.pdf'