Commit 96ddf8ec392b78ef1cb28ce713342486ad4af014
1 parent
68f8582f
Exists in
master
Add the production database to the ignored files.
Showing
2 changed files
with
2 additions
and
1 deletions
Show diff stats
.gitignore
flaskr/settings.py
... | ... | @@ -9,7 +9,7 @@ class Config(object): |
9 | 9 | |
10 | 10 | class ProductionConfig(Config): |
11 | 11 | ENV = 'production' |
12 | - SQLALCHEMY_DATABASE_URI = 'sqlite:///../database.db' | |
12 | + SQLALCHEMY_DATABASE_URI = 'sqlite:///../database_prod.db' | |
13 | 13 | SQLALCHEMY_TRACK_MODIFICATIONS = False |
14 | 14 | |
15 | 15 | CACHE_TYPE = 'simple' | ... | ... |