Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
vioott
/
BookMatchAI-Python-GeminiAPI
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
vioott
commited on
Jul 23
Commit
03f7d90
·
1 Parent(s):
92d6cdd
build(app): add main entry point for local and production runs
Browse files
Files changed (1)
hide
show
app.py
+5
-0
app.py
CHANGED
Viewed
@@ -12,3 +12,8 @@ app.register_blueprint(profile_bp)
12
13
def create_app():
14
return app
12
13
def create_app():
14
return app
15
+
16
+
17
+
if __name__ == '__main__':
18
+
app = create_app()
19
+
app.run(debug=True)