From f5e7c358761ee49da45933e73b943fb1eb66c030 Mon Sep 17 00:00:00 2001 From: Leon Sandøy Date: Sun, 15 Apr 2018 18:47:58 +0200 Subject: Initial data for tables and refactoring the dev-mode database handling to be similar to prod-mode. (#53) * Changed the dev-mode logic to be the same as prod for creating new tables if they don't exist. Also added a new feature where a table can be initialized with data if you create a JSON file in the pysite/database/table_init/ folder and fill it with a list of dicts where each dict represents a row in your table. Included a hiphoppers json so that I can actually test if it works in production. It will only init the table if the table is empty. * Not sure if this will solve it, but I think so. * Renamed the tables and primary keys, and alphabetized the dict. Now complies with the gdudes holy wishes. --- pysite/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pysite/__init__.py') diff --git a/pysite/__init__.py b/pysite/__init__.py index 3e11a776..82abf499 100644 --- a/pysite/__init__.py +++ b/pysite/__init__.py @@ -13,7 +13,7 @@ from pysite.logs import NonPicklingSocketHandler # region Logging # Get the log level from environment -log_level = os.environ.get("LOG_LEVEL", "info").upper() +log_level = os.environ.get("LOG_LEVEL", "debug").upper() if hasattr(logging, log_level): log_level = getattr(logging, log_level) -- cgit v1.2.3