Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Docfile
/
Mariam-metho
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
38ffa3a
Mariam-metho
/
app.py
kuro223
89192
a1be761
3 months ago
raw
Copy download link
history
blame
Safe
171 Bytes
from
api.index
import
app, db
# Create database tables if they don't exist
with
app.app_context():
db.create_all()
if
__name__ ==
'__main__'
:
app.run(debug=
True
)