Implemented first version of back-end for #1
This commit is contained in:
@ -6,11 +6,13 @@ Runs in debug mode if ran directly.
|
||||
import dotenv
|
||||
import flask
|
||||
|
||||
from blueprints.projects import projectsBP
|
||||
from blueprints.static import staticBP
|
||||
|
||||
dotenv.load_dotenv()
|
||||
|
||||
app = flask.Flask(__name__, static_folder='./www/')
|
||||
app = flask.Flask(__name__)
|
||||
app.register_blueprint(projectsBP)
|
||||
app.register_blueprint(staticBP)
|
||||
|
||||
if __name__ == '__main__':
|
||||
|
||||
Reference in New Issue
Block a user