We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bug 描述
复现步骤 该 Bug 复现步骤如下
version: '3' services: master: image: zkqiang/crawlab-lite:latest container_name: master ports: - "8081:8080" volumes: - "./data:/app/data" # persistent volume
4.宝塔&腾讯云端口均已经放通 5.使用的是ip+端口的方式访问
期望结果 我想登录进去看看功能
截屏
The text was updated successfully, but these errors were encountered:
version: '3' services: master: image: zkqiang/crawlab-lite:latest container_name: master ports: - "8080:8080" - "8000:8000" volumes: - "./data:/app/data" # persistent volume 把8000也映射下
Sorry, something went wrong.
如果在部署节点之外的机器上登录,映射8000也没用,会因请求http://localhost:8000/login报错。 前端登录调用了crawlab-ui的request,获取的URL是:
http://localhost:8000/login
export const getRequestBaseUrl = (): string => { return import.meta.env.VITE_APP_API_BASE_URL || 'http://localhost:8000'; };
Ref: https://github.com/crawlab-team/crawlab-ui/blob/main/src/utils/request.ts
建议转移到 https://github.com/crawlab-team/crawlab 的issue区
这项目就根本没办法使用?
No branches or pull requests
Bug 描述
复现步骤
该 Bug 复现步骤如下
4.宝塔&腾讯云端口均已经放通
5.使用的是ip+端口的方式访问
期望结果
我想登录进去看看功能
截屏
The text was updated successfully, but these errors were encountered: