Commit de53a792 by Иван Кубота

change port

parent e8bce553
Pipeline #507 failed with stage
...@@ -8,8 +8,10 @@ production: ...@@ -8,8 +8,10 @@ production:
script: script:
- npm install - npm install
- npm run start - npm run start
when: manual when: always
only: only:
- master - master
tags: tags:
- kus - kus
\ No newline at end of file variables:
APP_PORT: 80
\ No newline at end of file
var env = {}; var env = process.env;
const APP_HOST = env.APP_HOST || "127.0.0.1"; const APP_HOST = env.APP_HOST || "127.0.0.1";
const APP_PORT = env.APP_PORT || 4000; const APP_PORT = env.APP_PORT || 4000;
......
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