About 3-4.5 hours
Deployment is a fancy term for getting your website on the web. After building out your app, you might want to share it with others and to do that you need to deploy your app to the web where others can access it. In this lesson, we’ll learn more about deployment, and learn one way to deploy an app.
Apprentices will be able to:
Now we’ll work on deploying your app to Heroku.
We’ll be combining your frontend (create-react-app) with your backend (express) and deploying it to Heroku. Your frontend contains “static” JavaScript files – when you deploy to Heroku, Heroku turns your whole React app into a couple of static files that it will serve to the browser. No matter what data you have in the database, these files will always be the same.
Your backend, on the other hand, is dynamic – when you make an API request, the backend runs javascript code to do things like reading and writing to a database. Unlike the React app, which always serves the same files to the browser, the backend will serve different information to the browser depending on what’s in the database. We’re going to combine your dynamic code (express) with your static code (create-react-app).
cd into the React app you created and move everything into a new directory named client
.
cd <my react app>
mkdir client
mv * client
Create a server directory. Copy all the files from your Express API folder (1-3 JS files + package.json) into the server
folder you’re about to create inside your React app. This is where your API code will live from now on – don’t modify or use the old directory or repo
mkdir server
cp -r ~/path.to.source/. ~/path.to.destination/
# We need to keep package.json, package-lock.json, and node_modules at the top level.
mv server/package.json .
mv server/package-lock.json .
mv server/node_modules .
At this point, you should have the following directory structure:
./eventonica-app
./eventonica-app/client/* # The code for your React App
./eventonica-app/server/* # Your express API (app.js)
./eventonica-app/package.json # Top level package.json used by Heroku to run your app
./eventonica-app/package-lock.json # Top level package-lock.json used by Heroku to run your app
The *
here denotes all contents within a folder. So ./eventonica-app/client/*
refers to all the files & folders within this ‘client’ folder that make up your frontend React app.
./eventonica-app/server/*
refers to all the content within this ‘server’ folder that make up your backend application using Node.js/ Express. This may include the main Node.js application file, ex. app.js
, and the Express API connecting to the Postgres database.
Test out your new server locally.
# Make sure you use the <filename> you used when you created your Express API
node server/<filename.js
Modify your gitignore to ensure you don’t commit build
or node_modules
, even though they aren’t at the root. Add these lines:
**/node_modules/
**/build/
Change the port your server is listening on to process.env.PORT || 3000
. (Replace 3000 by a different number if your Express app was configured to run on a different port).
When we deploy to Heroku, Heroku will choose what port our server runs on.
Modify your express server to serve static files. Add this block to your express server AFTER all your other defined routes:
// Add this below all your other routes
if (process.env.NODE_ENV === 'production') {
// Serve any static files
app.use(express.static(path.join(__dirname, '../client/build')));
// Handle React routing, return all requests to React app
app.get('*', function(req, res) {
res.sendFile(path.join(__dirname, '../client/build', 'index.html'));
});
}
This block of code only runs in production. When it runs, it will serve your JavaScript files if the URL doesn’t match an existing API.
Configure the top-level package.json
to work with Heroku. Add the following two lines to the scripts
section of the JSON file:
Create a free Heroku account. https://signup.heroku.com/dc. Through the Heroku web UI, create a new Application. Once you create the app, add the Postgres add-on by going to the Resources tab and searching in the “Add-ons” search box for Postgres. Click the “Heroku Postgres” option. Finally, select the free version and click “Provision.”
Install the Heroku CLI from the command line. brew tap heroku/brew && brew install heroku
then use heroku login
Attach your Heroku app to your code. Run heroku git:remote -a YOUR-APP-NAME
inside the terminal at the root of your project directory.
If the command is successful, you will see the output set git remote heroku to https://git.heroku.com/YOUR-APP-NAME.git
in the terminal. A git remote is a version of your repository existing on another server. The output confirms that you now have a git remote hosted on Heroku — you will be pushing your code to this repository to deploy your app to Heroku.
Configure your database. Heroku will specify environment variables you can use to connect to the DB. Insert the piece of code below into the main Node.js application file (ex. server/app.js
). Fill in your local database name in the Postgres URL. This is the default database URL when your app is running locally.
When you create the database on Heroku in the next step, it will be automatically set the DATABASE_URL
environment variable. The code snippet below ensures that the DATABASE_URL
is used in lieu of the local Postgres URL when the app runs on Heroku.
const { Pool } = require('pg');
new Pool({
// Make sure you swap out <database_name> for the name you gave your postgres database
connectionString: process.env.DATABASE_URL || 'postgres://localhost:5432/<database_name>'
// Use SSL only in production
ssl: process.env.NODE_ENV === 'production'
});
Note: If you haven’t previously, install node-postgres
using npm install pg
on the terminal. This module is used to connect to the database.
Use Heroku to create the database tables you need. heroku pg:psql
You should use the same commands you ran to create your database locally create table events (.....)
If you’ve forgotten, psql
into your local database and check your table schema with \d events
. Copy that schema into your new Heroku database.
Commit everything!
git add server
git add client
git add package.json
git commit -am "Heroku setup\!"
Ensure you don’t have any missing files: git status
and commit them if you need to.
Deploy your app! git push heroku main
This takes a long time. This will print the URL your app was deployed to. Trying going to it. If something goes wrong, use heroku logs --tail
to debug.
Lastly, we’ll configure your create-react-app client to work seamlessly with your express backend locally, even though they’re running on two different ports. You can do this by adding the following line to client/package.json
:
node_modules
port
to come from process.env
heroku logs --tail
to see what’s wrongAll done! Small differences in the way you’ve set up your site may make bits of this process not work as expected, so there may be some debugging required.
Here is a sample repository that’s been deployed to Heroku using steps in this blog post. The project uses React for the frontend & Node.js/ Express for the backend. Note: the project does not make use of a Postgres database.
Here is a repository with similar heroku deployment steps performed entirely using the command line and heroku CLI: https://github.com/FTraian/node-express-postgresql-heroku-tutorial. [Heroku CLI Documentation, for reference]