fix: remove explicit proxy settings to use transparent gateway
This commit is contained in:
parent
30e954d89f
commit
76de5cf496
@ -6,13 +6,17 @@ module.exports = {
|
|||||||
args: "-m uvicorn backend.app.main:app --host 0.0.0.0 --port 8000",
|
args: "-m uvicorn backend.app.main:app --host 0.0.0.0 --port 8000",
|
||||||
cwd: "./",
|
cwd: "./",
|
||||||
env: {
|
env: {
|
||||||
PYTHONPATH: "./backend"
|
PYTHONPATH: "./backend",
|
||||||
|
// HTTP_PROXY: "http://192.168.3.91:7893",
|
||||||
|
// HTTPS_PROXY: "http://192.168.3.91:7893",
|
||||||
|
// http_proxy: "http://192.168.3.91:7893",
|
||||||
|
// https_proxy: "http://192.168.3.91:7893"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "datafetch-frontend",
|
name: "datafetch-frontend",
|
||||||
script: "npm",
|
script: "npm",
|
||||||
args: "run dev", // 生产环境建议改为 "start" 并先运行 npm run build
|
args: "run dev",
|
||||||
cwd: "./frontend",
|
cwd: "./frontend",
|
||||||
env: {
|
env: {
|
||||||
NODE_ENV: "development"
|
NODE_ENV: "development"
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user