From 93cacc1608d2a080727fb885297d52508c92d5bc Mon Sep 17 00:00:00 2001 From: "michael.jolin" Date: Thu, 16 Nov 2017 07:59:56 -0500 Subject: [PATCH] fix(config): Remove default "VERSION" --- config/setup.py | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/config/setup.py b/config/setup.py index 8dd5251..db8e135 100644 --- a/config/setup.py +++ b/config/setup.py @@ -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 @@ -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())