Commit 9b19aa41b8b467efddcdb96af6d59830c80f9901

Authored by hitier
1 parent 5e4e39bb

fix default config file

Showing 1 changed file with 4 additions and 2 deletions   Show diff stats
resources/pdc_config.py
... ... @@ -10,15 +10,15 @@ root_dir = os.path.abspath(os.path.dirname(__file__))
10 10  
11 11 class Config(object):
12 12 SECRET_KEY = 'dev'
13   - SQLALCHEMY_TRACK_MODIFICATIONS = False
14 13  
15 14 # Please change the following to fit you own site parameters
16 15 #
17 16 PDC_APP_NAME = 'Plan de Charge'
18 17 PDC_SITE_NAME = 'NO_SITE' # choose among IRAP, PUBLIC, ...
19 18 PDC_SITE_CLASS = 'public-icon' # choose among admin-icon, public-icon
  19 + PDC_LOGS_LEVEL = 'DEBUG' # choose within DEBUG, INFO, WARN, ERROR ( more levels in logging module )
20 20 PDC_LOGS_DIR = os.path.join(root_dir, 'logs')
21   - PDC_LOGS_FILENAME = os.path.join(PDC_LOGS_DIR, 'pdc.logs')
  21 + PDC_LOGS_FILE = os.path.join(PDC_LOGS_DIR, 'pdc.log')
22 22  
23 23 #
24 24 # No need to Edit below
... ... @@ -30,6 +30,8 @@ class Config(object):
30 30 if LOG_TO_STDOUT and LOG_TO_STDOUT.upper() == "true".upper():
31 31 LOG_TO_STDOUT = True
32 32  
  33 + SQLALCHEMY_TRACK_MODIFICATIONS = False
  34 +
33 35 # Trying to set specific db uri from ./db_config.py
34 36 try:
35 37 SQLALCHEMY_DATABASE_URI = sqlalchemy_database_uri
... ...