https://github.com/RocketChat/Rocket.Chat自述文件提及了飞入式面板集成,并提供了一个示例屏幕截图 - https://raw.githubusercontent.com/Sing-Li/bbug/master/images/dronechatops.png
是否有任何文档可以帮助您开始使用这样的google地图示例中的fly-in面板chatops集成?
答案 0 :(得分:1)
将chatops软件包作为概念证明添加,以展示可在Rocket.Chat代码库中完成的自定义类型。
如果您想玩它。您可以转到server {
location / {
try_files $uri @app;
}
location @app {
include uwsgi_params;
uwsgi_pass unix:///tmp/uwsgi.sock;
}
location /static {
alias /app/static;
}
}
文件并取消注释rocketchat:chatops包。目前位于line 138
可以找到here
的代码您需要克隆源代码以及运行meteor来启动和运行。
将来我们将无需编辑源代码即可完成此类工作。