Diff of /run.py [000000] .. [addb71]

Switch to unified view

a b/run.py
1
from flask import Flask
2
from routes.main import main
3
import os
4
app = Flask(__name__, 
5
            static_folder='app/static',  
6
            template_folder='app/templates')
7
# app = Flask(__name__, template_folder=os.path.abspath('app/templates'))
8
9
# ... rest of your code ...
10
app.register_blueprint(main)
11
12
if __name__ == '__main__':
13
    app.run(debug=True)
14