This repository has been archived on 2023-02-07. You can view files and clone it, but cannot push or open issues or pull requests.
Files
blender-bfct/blender-bfct/runserver.py
2014-06-13 14:56:37 +02:00

6 lines
120 B
Python

from application import app
from application import db
db.create_all(bind=['users'])
db.create_all(bind=None)
app.run()