Hi,
I want to deploy my bokeh app to heroku. But I am confused on
Procfile.
I have a template, so I need to deploy related directory (chorop)
my Procfile:
‘’’
web: bokeh serve --port=$PORT --allow-websocket-origin=chorop.herokuapp.com --address=0.0.0.0 - -use-xheaders chorop # (my dir)
‘’’
How can I deploy a directory to heroku ?
regards