12 lines
281 B
Python
12 lines
281 B
Python
|
from flask_site import *
|
||
|
from contextlib import closing
|
||
|
|
||
|
def init_db():
|
||
|
with closing(connect_db()) as db:
|
||
|
with app.open_resource('schema.sql', mode='r') as f:
|
||
|
db.cursor().executescript(f.read())
|
||
|
db.commit()
|
||
|
|
||
|
if __name__ == "__main__":
|
||
|
init_db()
|