I’m successfully able to host my panel on Heroku, using the instructions here, but can’t get it to work on my preferred service: Netlify.
The run command that I try looks like this: python -m panel serve test_panel.py --address 0.0.0.0 --port 8000 --allow-websocket-origin=checkout-bi.netlify.app
I have tried with and without address and port assigned with the same result.
The deploy log at Netlify looks like this, so it doesn’t give an error, but still, I am unable to access the app.
5:22:06 PM: 2022-07-28 15:22:06,924 Starting Bokeh server version 1.4.0 (running on Tornado 5.1.1)
5:22:06 PM: 2022-07-28 15:22:06,925 User authentication hooks NOT provided (default user enabled)
5:22:06 PM: 2022-07-28 15:22:06,927 Bokeh app running at: http://0.0.0.0:8000/panel_test
5:22:06 PM: 2022-07-28 15:22:06,928 Starting Bokeh server with process id: 1299
On the site (checkout-bi.netlify.app) this text displayed: Not Found - Request ID: 01G92Q3XZZK4VR7HJGKDF5WRC9
Has anyone successfully deployed a panel app with netlify before? Any ideas how I could solve this?