How to upload the Restaurant Reviews App project to a GitHub page? — Front End Nanodegree

Alvaro Andres Pinzon Cortes
1 min readMar 15, 2019

--

Already uploaded the project to another GitHub repository

0. Update in dhhelper.js the DATABASE_URL()

  1. Head over to GitHub and create a new repository named username.github.io, where username is your username (or organization name) on GitHub.

2. cd into the folder in your computer with project repository

3. Create a remote to the new repository

git remote add githubpages  https://sophshep.github.io

4. Push the local repository to the new repository in GitHub

git push -u githubpages master

--

--

No responses yet