Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
SpreadSheets600
/
PoraHobe
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
SpreadSheets
commited on
Dec 2, 2025
Commit
d7f81ec
·
1 Parent(s):
3d8213d
feat: load environment variables from .env file
Browse files
Files changed (1)
hide
show
run.py
+2
-0
run.py
CHANGED
Viewed
@@ -1,5 +1,7 @@
1
from app import create_app
2
3
app = create_app()
4
5
if __name__ == "__main__":
1
+
from dotenv import load_dotenv
2
from app import create_app
3
4
+
load_dotenv()
5
app = create_app()
6
7
if __name__ == "__main__":