Web Programming for Apps and Services
Schedule Notes Resources MyApps Instructions Graded Work Code examplesRather than building the app manually before every production deployment and pushing the contents to a static web server, we can leverage modern services such as Vercel to automate this process. Vercel will detect changes to our code and perform the build step for us automatically as well as host the built app on their server.
For Vercel to gain access to our code however, it must be hosted online. This is where GitHub comes in.
We will be using GitHub since it is the most popular and widely used source-code-hosting facility, however other services can also be used with Vercel such as GitLab or Bitbucket.
If you don’t have an account on GitHub, create one now.
Sign in to your GitHub account.
Find and click a “+” button on the Navigation Bar. Then, choose “New Repository” from the dropdown menu.
Fill in the repository name text field with the name of your project. Also, please make sure that the “Private” option is selected:
Once you’re happy with the settings, hit the “Create repository” button.
Open the terminal and change the current working directory to your app.
You can run git status
to verify that Git is set up properly. If you see fatal: not a git repository (or any of the parent directories): .git
error message, then your local Git repository does not exist and you need to initialize it using git init
.
Now that we’re sure that our local git repository is set up, we need to add and commit all of our code changes:
git add .
git commit -m "Initial commit"
.Go to your GitHub repository and click the “copy” button in the “Quick Setup” block:
This will copy the URL of your remote GitHub repository.
Now, go back to your Terminal again and add this remote URL by running the following command:
git remote add origin URL
where URL is the remote repository URL that you have copied in the previous step.
If you run git remote -v
, you should see something like this:
origin git@github.com:patrick-crawford/my-app.git (fetch)
origin git@github.com:patrick-crawford/my-app.git (push)
Finally, commit your changes (if you have not yet done so) and push the code from your local repository to the remote one:
git push origin master
You can verify that the code was pushed by going back to your Browser and opening your GitHub repository.
Once we have made our source code available on GitHub, we can proceed to Vercel and import our git repository from GitHub.
Once you click on “Continue with Github”, you will be asked to log into your github account before then proceeding to “Import Git Repository”.
From here, click the “Select…” dropdown and select “+ Add GitHub Org or Account”. This will open a new window asking you “Where do you want to install Vercel”, followed by a list of containing your account and organizations that you are associated with in GitHub.
Pick your personal account, select “Only Select Repositories” and navigate to our newly created “my-app” repository, before clicking the green “Install” button:
Once this process has completed, you should see “my-app” listed in the “Import Git Repository” section next to a blue “Import” button. Click this to select the “Vercel Scope” - this is going to just be our personal account (we do not need to create a team at this point).
Once you have selected your Personal Account by clicking the blue “Select” button, you will finally be presented with the “Deploy” option:
You will notice that before we click deploy, we have the option to set environment variables or build / output settings. At this point, we do not need to change any of these settings and are free to proceed with the Deploy.
This will trigger a build step. Once it is completed successfully, you wil have the option to visit the site, or open the dashboard to manage the deployment, view build logs, domains, etc.