Commit 96ddf8ec392b78ef1cb28ce713342486ad4af014

Authored by Antoine Goutenoir
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
... ... @@ -29,6 +29,7 @@ violations.flake8.txt
29 29 nosetests.xml
30 30 __pycache__
31 31 database.db
  32 +database_*.db
32 33 geocache.db
33 34  
34 35 # Sphinx
... ...
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'
... ...