Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
emanoelopes
/
clareia
like
0
Running
App
Files
Files
Fetching metadata from the HF Docker repository...
main
clareia
/
run.py
emanoelopes
flask
d42e360
7 months ago
raw
Copy download link
history
blame
Safe
247 Bytes
from
app.app
import
app, db
import
os
if
__name__ ==
'__main__'
:
if
not
os.path.exists(app.config[
'UPLOAD_FOLDER'
]):
os.makedirs(app.config[
'UPLOAD_FOLDER'
])
with
app.app_context():
db.create_all()
app.run(debug=
True
)