Heroku Node Deployment
Last updated
Was this helpful?
Last updated
Was this helpful?
As Associate Product Lead
and Technical Project Leads
you'll be responsible for provisioning Heroku accounts for your students, configuring the applications to use a Postgres
addon, and granting access to the provisioned app to the students who need it (should be WEB students primarily).
Currently only APLs will have full admin access to apps.
There are some settings any team member can perform, eg. Environment Variables
If you haven't gotten admin access to Heroku yet please ask your release manager to set that up using your Email
Log into the Heroku console using your email.
You should have received access to the console from your engineering manager.
Click on the New
button in the top right corner
Name the app using our Labs naming convention: productname-team-api
i.e.
ecosoap-a-api
PostgresQL
add-on - Release ManagersSelect the app and click on Overview
Select Configure Add-ons
Search for Postgres
and Heroku Postgres
should appear in the list of options
Select Heroku Postgres
and select -> Hobby Basic - $9.00
Select Provision
Once the app is created click on the app and select the access
tab
Click Add Member
and add your students and TPL to the app as making sure that View
, Deploy
, Operate
boxes are all selected. Click Save Changes
Your students should receive an email granting them access to their console; follow up and make sure they are able to get in
Note: For build-ons, you'll be adding students to an existing Heroku app.
From the application tab navigation select Settings
Select Reveal Config Vars
**You should already see a DATABASE_URL
assigned to the postgres add-on you
set up**
Add all the proper environment variables
From the application tab navigation select Deploy
Select the GitHub
"Deployment Method"
Find the Connect to GitHub
section and select BloomTech-Labs
Find your app and select Connect
Deploy from the main
branch
Select Wait for CI to pass before deploy
Enable Automatic Deploys
so that anytime a branch is merged into main
When your repo is ready follow these steps to complete the deploy.
run a manual deploy by hitting the Deploy Branch
button at the bottom of
the page
Click Open app
; you will see the "api":"up"
message if all is well.
Using the heroku console run the following commands (Alternatively you
can use the heroku cli app)
bash
then you can run the following commands from the shell
npm run knex migrate:latest
npm run knex seed:run
this is optional if the team wants to start with
5 profiles.
Your team is now set up! Now when someone has a PR merged into main
your team's app will update across the world wide web
Checkout how to setup Review Apps to have Heroku automatically deploy your app for each github PR that you create.
Optionally, See the setting up a Custom Domain Guide to make sure that your API doesn't have the ugly herokuapp
in it's URL.