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

7
application/__init__.py Normal file
View File

@ -0,0 +1,7 @@
from flask import Flask
from config import Config
app = Flask(__name__)
app.config.from_object(Config)
import application.routes