Commit ed8e6e0a by zhaoxiqing

gsb

parent b25e9f7b
node_modules/ node_modules/
.idea/ .idea/
bpo-auth/node_modules/ engine-sign/node_modules/
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
"type": "node", "type": "node",
"request": "launch", "request": "launch",
"name": "Launch Program", "name": "Launch Program",
"program": "${workspaceFolder}/bpo-auth/main.js" "program": "${workspaceFolder}/engine-sign/main.js"
} }
] ]
} }
\ No newline at end of file
#!/bin/bash #!/bin/bash
FROM registry.cn-beijing.aliyuncs.com/hantang2/node105:v2 FROM registry.cn-beijing.aliyuncs.com/hantang2/node105:v2
MAINTAINER jy "jiangyong@gongsibao.com" MAINTAINER jy "jiangyong@gongsibao.com"
ADD bpo-auth /apps/bpo-auth/ ADD engine-sign /apps/engine-sign/
WORKDIR /apps/bpo-auth/ WORKDIR /apps/engine-sign/
RUN cnpm install -S RUN cnpm install -S
CMD ["node","/apps/bpo-auth/main.js"] CMD ["node","/apps/engine-sign/main.js"]
......
...@@ -25,7 +25,7 @@ var settings = { ...@@ -25,7 +25,7 @@ var settings = {
secret: "f99d413b767f09b5dff0b3610366cc46", secret: "f99d413b767f09b5dff0b3610366cc46",
}, },
basepath: path.normalize(path.join(__dirname, '../..')), basepath: path.normalize(path.join(__dirname, '../..')),
port: process.env.NODE_PORT || 3574, port: process.env.NODE_PORT || 3573,
reqEsAddr: function () { reqEsAddr: function () {
if (this.env == "dev") { if (this.env == "dev") {
var localsettings = require("./localsettings"); var localsettings = require("./localsettings");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment