This is a very simple question, but I can't seem to manage to do it. I have created a python server script that we will call server_main.py
. On GitHub, it is stored in a folder which we will call A.
I tried putting the script in the master branch directly, and when I did web: python server_main.py
in the Procfile file, everything works fine.
Now, when I try to run the server_main.py
that is in the folder A, I can't do it... I tried this:
web: python A/server_main.py
and
web: python A\server_main.py
But that didn't work. Is there a specific way to do this?
Thanks in advance :)