Deploy React
Deploy React to Heroku
Objectives
Documentation
Create a React App and Deploy It
npm install -g create-react-appLast updated
npm install -g create-react-appLast updated
create-react-app $APP_NAME
cd $APP_NAME
git init
heroku create $APP_NAME --buildpack https://github.com/mars/create-react-app-buildpack.git
git add -A
git commit -m "new react app"
git push heroku master
heroku open