Spaces:
Running
on
Zero
Running
on
Zero
Procfile_webprocess file to use main.py
Browse files
Procfile
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# main process for the Gradio app: // web process command
|
| 2 |
+
web: gradio main.py
|
| 3 |
+
# web: gradio app.py
|
| 4 |
+
|
| 5 |
+
# web: indicates command for the web process.
|
| 6 |
+
# gradio main.py : Gradio application use main.py as the entry point.
|
| 7 |
+
# SMY: # instead of //
|