Initial commit with the basic bones of the app and webpage up. Need to fill in the functions and routing next.

This commit is contained in:
Norm Rasmussen
2023-11-27 17:11:56 -05:00
commit 10eb273b87
18 changed files with 271 additions and 0 deletions

4
config.py Normal file
View File

@ -0,0 +1,4 @@
import os
class Config(object):
SECRET_KEY = os.environ.get("SONGPROMPT") or "song-prompt"