我正在尝试通过heroku提供交互式bokeh
数字。我试图提供的数字基本上等同于这一数字(example,code)。我是bokeh
和heroku
的新手,所以我很确定我错过了一些非常基本的东西 - 我认为我想要做的事应该非常简单。
首先,我可以使用bokeh serve --show myapp
命令在本地提供我的数字。其中myapp
是包含bokeh
数字的python模块的名称。请注意,--show
标志只会在构建图形并且服务器正在运行后提示bokeh
打开浏览器窗口。
接下来,我设置了heroku
帐户,并按照Heroku - Getting Started With Python tutorial中的步骤创建了我的第一个应用。我的git存储库包含myapp
,requirements.txt
文件和Procfile
。
Procfile
中尝试了很多不同的选项,但没有一个有效。由于bokeh serve ...
命令启动服务器,因此看起来像这样的Profile
不应该这样做:
web: bokeh serve --port $PORT myapp
应该有用吗?也许我错过了一些东西,我需要创建一个环绕flask
应用程序的bokeh
应用程序,但就我所知,这似乎没有必要。也许有人知道一个很好的教程,将所有这些步骤结合在一起,我还没有找到一个完整的教程。
更新
我在下面粘贴了一些heroku
日志。您如何处理这个--host whitelist
问题?
2016-07-17T05:00:46.513139+00:00 heroku[slug-compiler]: Slug compilation started
2016-07-17T05:00:46.366909+00:00 heroku[api]: Deploy 9b63d8a by me@me.com
2016-07-17T05:00:46.367087+00:00 heroku[api]: Release v4 created by me@me.com
2016-07-17T05:00:46.624937+00:00 heroku[web.1]: State changed from crashed to starting
2016-07-17T05:00:55.188978+00:00 heroku[web.1]: Starting process with command `bokeh serve --port=39665 myapp.py`
2016-07-17T05:00:57.876287+00:00 app[web.1]: 2016-07-17 05:00:57,876 Starting Bokeh server on port 39665 with applications at paths ['/myapp']
2016-07-17T05:00:57.868758+00:00 app[web.1]: 2016-07-17 05:00:57,868 Starting Bokeh server version 0.12.0
2016-07-17T05:00:57.876378+00:00 app[web.1]: 2016-07-17 05:00:57,876 Starting Bokeh server with process id: 3
2016-07-17T05:00:58.800309+00:00 heroku[web.1]: State changed from starting to up
2016-07-17T05:00:59.970326+00:00 app[web.1]: 2016-07-17 05:00:59,970 Rejected connection from host 'myapp.herokuapp.com' because it is not in the --host whitelist
2016-07-17T05:00:59.973495+00:00 app[web.1]: 2016-07-17 05:00:59,970 403 GET / (XX.XX.XXX.XX) 1.29ms
2016-07-17T05:00:59.975282+00:00 heroku[router]: at=info method=GET path="/" host=myapp.herokuapp.com request_id=xxxxxxxxxxxxx fwd="XX.XX.XX.XX" dyno=web.1 connect=1ms service=4ms status=403 bytes=219
答案 0 :(得分:9)
我只是回答我自己的问题,因为我最终能够让这个问题发挥作用,而其他人还没有回答。
我最终得到的Procfile
看起来像这样:
web: bokeh serve --port=$PORT --host=myapp.herokuapp.com --host=* \
--address=0.0.0.0 --use-xheaders myapp.py
关于所有这些论点的含义(据我所知):
--port
:指定bokeh
服务器将侦听的端口,$PORT
由heroku
设置
--host=myapp.herokuapp.com
和--host=*
:将主机名指定为myapp.heroku...
,通配符应允许接受所有主机。我不再确定这是否需要了。
--address=0.0.0.0
:我认为这会告诉bokeh
自己确定哪个IP地址。
--use-xheaders
:导致bokeh
覆盖远程IP和URI方案/协议
如果此方法存在问题,我很乐意对此进行编辑或接受更有知识的用户答案。
答案 1 :(得分:1)
接受的答案对我来说不起作用(可能是由于bokeh版本的差异),但是由于这仍然是该问题的热门歌曲之一,因此,这是我所做的小修改:
web: bokeh serve --port=$PORT --num-procs=0 --allow-websocket-origin=myapp.herokuapp.com --address=0.0.0.0 --use-xheaders myapp.py