Skip to content

Commit 3f3563f

Browse files
Fix missing env variable (#471)
* Gatekeep fix (#465) * Fix Gatekeep to constitional requirements * Gatekeep does all constitutional things now * rename variable for legibility * fix json response * lint fix --------- Co-authored-by: Noah Hanford (spaced) <spaced@csh.rit.edu> * Fix frosh attendance (#464) * attempt to fix upgrading accounts breaking frosh attendance * actually fix hm attendance and reorder opperations to create then delete * local db explaination * trailing whitespace :)))))))) * fix typo * fix variable name * guys i'm dumb --------- Co-authored-by: Noah Hanford (spaced) <spaced@csh.rit.edu> Co-authored-by: Noah Hanford <bigspaceships56@gmail.com>
1 parent be49de6 commit 3f3563f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

config.env.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
PROFILING = env.get("CONDITIONAL_PROFILING", "false").lower() == "true"
1919

2020
# DB Info
21-
SQLALCHEMY_DATABASE_URI = "postgresql://conditional:fancypantspassword@conditional-postgres:5432/conditional"
21+
SQLALCHEMY_DATABASE_URI = env.get("SQLALCHEMY_DATABASE_URI", "postgresql://conditional:fancypantspassword@conditional-postgres:5432/conditional")
2222
SQLALCHEMY_TRACK_MODIFICATIONS = False
2323

2424
# LDAP config

0 commit comments

Comments
 (0)