1 Star 0 Fork 11

szraincat/ERPNext Documents

forked from 82096089/ERPNext Documents 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
Vscode+ERPNext远程调试 1.19 KB
一键复制 编辑 原始数据 按行查看 历史
82096089 提交于 2021-05-15 02:18 . add Vscode+ERPNext远程调试.
lanch.json配置文件
{
// 使用 IntelliSense 了解相关属性。
// 悬停以查看现有属性的描述。
// 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Python: Remote",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/apps/frappe/frappe/utils/bench_helper.py",
"cwd": "${workspaceFolder}/sites",
"env": {
"APPS": "frappe"
},
"args": [
"frappe",
"serve",
"--port",
"8446",
"--noreload",
],
"connect": {
"host": "远程计算机别名",
"port": "远程计算机ssh端口",
},
"pathMappings": [
{
"localRoot": "${workspaceFolder}",
"remoteRoot": "."
}
]
},
]
}
调试开始后,会提示你再端口8446上运行的服务可用, 在浏览器打开, 即可。
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/szraincat/docs.git
git@gitee.com:szraincat/docs.git
szraincat
docs
ERPNext Documents
master

搜索帮助