From 6075920a97dbcd446d996e8ce894918dc60b9de2 Mon Sep 17 00:00:00 2001 From: Wojciech Kwolek Date: Sat, 29 Aug 2020 21:46:06 +0200 Subject: [PATCH] Revert "fix SERVER_NAME" This reverts commit af74871c113f37c0291bdb1453850aed8336a9df. --- app/__init__.py | 1 - 1 file changed, 1 deletion(-) diff --git a/app/__init__.py b/app/__init__.py index 4d5d201..21b1c10 100644 --- a/app/__init__.py +++ b/app/__init__.py @@ -9,7 +9,6 @@ def create_app(): app.config['SQLALCHEMY_DATABASE_URI'] = os.getenv( "DATABASE_URL", "sqlite:///app.db") app.config['SQLALCHEMY_TRACK_MODIFICATIONS'] = False - app.config['SERVER_NAME'] = os.getenv('FLASK_SERVER_NAME', 'doneth.at') from . import db db.init_app(app)