-
Notifications
You must be signed in to change notification settings - Fork 39
How to deploy to various cloud platforms
Shannon Harris edited this page Feb 26, 2022
·
1 revision
- From the dashboard, click Create new app
- Give the app a name
- Choose a region and click Create app
- Go to the Settings tab
- In the Config Vars section, click the Reveal Config Vars button
- Enter the following key and value:
NPM_CONFIG_PRODUCTION: false
then Add. - In Buildpacks, make sure that
heroku/nodejs
is selected - In the Deploy tab, in the Deployment method section, click GitHub
- In the Connect to GitHub section, select and connect to your forked LTI tool repo
- Once connected, scroll to the bottom of the page and click Deploy Branch (for master branch or whatever feature/bugfix branch you're working from)
- Wait for the deployment to complete, then click View to launch your app.
- From the dashboard, click Create new app
- Give the app a name
- Choose a region and click Create app
- Go to the Settings tab
- In the Config Vars section, click the Reveal Config Vars button
- Enter the following key and value:
NPM_CONFIG_PRODUCTION: false
then Add. - In Buildpacks, make sure that
heroku/nodejs
is selected - In the Deploy tab, in the Deployment method section, click Heroku Git
- Open a local terminal window and run the git:remote command shown in the Existing Git repository section
- Push your code using
git push heroku master