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

[bugfix] certificates moved to variables, cicd config adapted

parent 9ec78939
This commit is part of merge request !61. Comments created here will be created in the context of that merge request.
Showing with 6 additions and 0 deletions
+6 -0
......@@ -2,6 +2,9 @@ deploy-testing:
stage: deploy
script:
- 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
- "pm2 delete --silent account || :"
- pm2 start ./app.js --name=account
......@@ -15,6 +18,9 @@ deploy-master:
stage: deploy
script:
- 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
- "pm2 delete --silent 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