Skip to content

Commit

Permalink
fix(config): Remove default "VERSION"
Browse files Browse the repository at this point in the history
  • Loading branch information
mickjol committed Nov 16, 2017
1 parent 1086b94 commit 93cacc1
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions config/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ def validate_minimal_config():
And execute the request "INSERT INTO tbl_permission_system VALUES('%s', '%s');" on your database
""" % (system_id, system_id, PACKAGE_NAME))

if IS_DEV:
LOGS['level'] = 'info'


# Database config
DATABASE = None
Expand Down Expand Up @@ -73,10 +76,13 @@ def validate_minimal_config():

# Page web
CONTENT_SECURITY_POLICY_CONNECT = None
VERSION = {}
"""
VERSION = {
'devExtreme': '16.2.6',
'jQuery': '3.1.0'
'devExtreme': '17.1.8',
'jQuery': '3.2.1'
}
"""

# Folder
ROOT = os.path.abspath(os.getcwd())
Expand Down

0 comments on commit 93cacc1

Please sign in to comment.