14 lines
256 B
Python
14 lines
256 B
Python
from config import TEMPLATES_FOLDER
|
|
from oshipka import init_db
|
|
|
|
from populate import populate_db
|
|
from webapp.app import app
|
|
|
|
if init_db(app):
|
|
populate_db(app)
|
|
|
|
app.template_folder = TEMPLATES_FOLDER
|
|
|
|
if __name__ == "__main__":
|
|
app.run(debug=True)
|