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
@@ -29,6 +29,7 @@ violations.flake8.txt @@ -29,6 +29,7 @@ violations.flake8.txt
29 nosetests.xml 29 nosetests.xml
30 __pycache__ 30 __pycache__
31 database.db 31 database.db
  32 +database_*.db
32 geocache.db 33 geocache.db
33 34
34 # Sphinx 35 # Sphinx
flaskr/settings.py
@@ -9,7 +9,7 @@ class Config(object): @@ -9,7 +9,7 @@ class Config(object):
9 9
10 class ProductionConfig(Config): 10 class ProductionConfig(Config):
11 ENV = 'production' 11 ENV = 'production'
12 - SQLALCHEMY_DATABASE_URI = 'sqlite:///../database.db' 12 + SQLALCHEMY_DATABASE_URI = 'sqlite:///../database_prod.db'
13 SQLALCHEMY_TRACK_MODIFICATIONS = False 13 SQLALCHEMY_TRACK_MODIFICATIONS = False
14 14
15 CACHE_TYPE = 'simple' 15 CACHE_TYPE = 'simple'