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...
695959c
Mariam-metho
/
run.py
kuro223
jki
46e055c
4 months ago
raw
Copy download link
history
blame
Safe
154 Bytes
from
app
import
create_app
import
os
app = create_app()
if
__name__ ==
'__main__'
:
app.run(host=
"0.0.0.0"
, port=
int
(os.environ.get(
"PORT"
,
5000
)))