Commit 53937cc8 authored by Wolfgang Knopki's avatar Wolfgang Knopki
Browse files

[bugfix] certificates moved to variables, cicd config adapted

parent 9ec78939
...@@ -2,6 +2,9 @@ deploy-testing: ...@@ -2,6 +2,9 @@ deploy-testing:
stage: deploy stage: deploy
script: script:
- cat $configfiledev > ./config/config.js - cat $configfiledev > ./config/config.js
- cat $cert > ./routes/cert/cert.pem
- cat $certidp > ./routes/cert/cert_idp.pem
- cat $key > ./routes/cert/key.pem
- npm install - npm install
- "pm2 delete --silent account || :" - "pm2 delete --silent account || :"
- pm2 start ./app.js --name=account - pm2 start ./app.js --name=account
...@@ -15,6 +18,9 @@ deploy-master: ...@@ -15,6 +18,9 @@ deploy-master:
stage: deploy stage: deploy
script: script:
- cat $configfileprod > ./config/config.js - cat $configfileprod > ./config/config.js
- cat $cert > ./routes/cert/cert.pem
- cat $certidp > ./routes/cert/cert_idp.pem
- cat $key > ./routes/cert/key.pem
- npm install - npm install
- "pm2 delete --silent account || :" - "pm2 delete --silent account || :"
- pm2 start ./app.js --name=account - pm2 start ./app.js --name=account
......
Supports Markdown
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