semmyk commited on
Commit
bede14d
·
1 Parent(s): b2fc055

Procfile_webprocess file to use main.py

Browse files
Files changed (1) hide show
  1. Procfile +7 -0
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 //