From f23e41dfe33972b5ccfcfa7f192f7865f7479f9c Mon Sep 17 00:00:00 2001 From: Peter Mikus Date: Tue, 1 Mar 2022 14:10:13 +0100 Subject: feat(dash): Terraform AWS Beanstalk Signed-off-by: Peter Mikus Change-Id: Ib89677de3818b46aa622f56f28b7bbb54458dbe0 --- resources/tools/dash/app/config.py | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) (limited to 'resources/tools/dash/app/config.py') diff --git a/resources/tools/dash/app/config.py b/resources/tools/dash/app/config.py index 55f92cc36b..76f66419a7 100644 --- a/resources/tools/dash/app/config.py +++ b/resources/tools/dash/app/config.py @@ -13,24 +13,20 @@ # See the License for the specific language governing permissions and # limitations under the License. -from os import environ - - class Config: """Flask configuration variables. """ # General Config - FLASK_APP = environ.get("FLASK_APP") - FLASK_ENV = environ.get("FLASK_ENV") - SECRET_KEY = environ.get("SECRET_KEY") + FLASK_APP = "wsgi.py" + FLASK_ENV = "production" # Assets - LESS_BIN = environ.get("LESS_BIN") - ASSETS_DEBUG = environ.get("ASSETS_DEBUG") - LESS_RUN_IN_DEBUG = environ.get("LESS_RUN_IN_DEBUG") + LESS_BIN = "/usr/local/bin/lessc" + ASSETS_DEBUG = "False" + LESS_RUN_IN_DEBUG = "False" # Static Assets STATIC_FOLDER = "static" TEMPLATES_FOLDER = "templates" - COMPRESSOR_DEBUG = environ.get("COMPRESSOR_DEBUG") + COMPRESSOR_DEBUG ="True" -- cgit 1.2.3-korg