Skip to content

Latest commit

 

History

History
42 lines (31 loc) · 917 Bytes

README.md

File metadata and controls

42 lines (31 loc) · 917 Bytes

Host on Heroku

Deploy initial project to Heroku

heroku login
heroku git:remote -a oauth2-token-inline-hook
heroku config:set --app=oauth2-token-inline-hook JWT_AT_AUD=Https://IDMapper-TIH-Service.com
heroku config:set --app=oauth2-token-inline-hook JWT_AT_CLIENT_ID=0oa5fmydlqntI8ExQ1d7
heroku config:set --app=oauth2-token-inline-hook JWT_AT_ISS=https://star.oktapreview.com/oauth2/aus5fqoxl0AWuk8SL1d7
heroku config:set --app=oauth2-token-inline-hook JWT_AT_REQ_SCOPE=idmapper.tihservice.execute
git init && git add -A .
git commit -m "Init"
git push heroku master
heroku logs --tail

Push on-going project changes to Heroku

git add -A . && git commit -m "Enh|Fix|Feat: {Change details}" && git push heroku master && heroku logs --tail

Heroku CLI Commands