migrate to using db connection string from env
This commit is contained in:
parent
84a55eefde
commit
efe3248c07
9 changed files with 375 additions and 177 deletions
|
|
@ -85,7 +85,10 @@ path_separator = os
|
|||
# other means of configuring database URLs may be customized within the env.py
|
||||
# file.
|
||||
; sqlalchemy.url = driver://user:pass@localhost/dbname
|
||||
sqlalchemy.url = sqlite:///data/wrongmove.db
|
||||
; sqlalchemy.url = sqlite:///data/wrongmove.db
|
||||
; sqlalchemy.url = mysql://wrongmove:wrongmove@localhost:3306/wrongmove
|
||||
sqlalchemy.url = %(DB_CONNECTION_STRING)s
|
||||
|
||||
|
||||
|
||||
[post_write_hooks]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue