16 lines
316 B
Python
16 lines
316 B
Python
"""
|
|
Imports all required blueprints and initalises the app.
|
|
Runs in debug mode if ran directly.
|
|
"""
|
|
|
|
import flask
|
|
|
|
from static import staticBP
|
|
|
|
app = flask.Flask(__name__, static_folder='./www/')
|
|
app.register_blueprint(staticBP)
|
|
|
|
if __name__ == '__main__':
|
|
print('Running in debug mode')
|
|
app.run(debug=True)
|