From 459989cad7b803de752551f3bc41c3d121bbe53f Mon Sep 17 00:00:00 2001
From: Robert Chatley <robert@develogical.com>
Date: Fri, 5 Nov 2021 16:01:15 +0000
Subject: [PATCH] configure my app name

---
 config/config.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/config/config.py b/config/config.py
index 9969760..76017b6 100644
--- a/config/config.py
+++ b/config/config.py
@@ -1,7 +1,7 @@
 import os
 
 # This should match exactly the name of the app you specified
-APP_NAME = "MY_APP_NAME_HERE"
+APP_NAME = "examplepaasapp"
 
 ENV = os.environ.get('ENV', 'prod').lower()
 URL_PREFIX = f"/{APP_NAME}" if ENV == 'prod' else ""
-- 
GitLab