feat(uti): Refactor styling
[csit.git] / resources / tools / dash / app / config.py
index 55f92cc..c927c3c 100644 (file)
 # 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")
-
-    # Assets
-    LESS_BIN = environ.get("LESS_BIN")
-    ASSETS_DEBUG = environ.get("ASSETS_DEBUG")
-    LESS_RUN_IN_DEBUG = environ.get("LESS_RUN_IN_DEBUG")
+    FLASK_APP = "wsgi.py"
+    FLASK_ENV = "production"
 
     # Static Assets
     STATIC_FOLDER = "static"
     TEMPLATES_FOLDER = "templates"
-    COMPRESSOR_DEBUG = environ.get("COMPRESSOR_DEBUG")
+    COMPRESSOR_DEBUG ="True"