Deploy React
Objectives
Documentation
Create a React App and Deploy It
npx create-react-app $APP_NAME
cd $APP_NAME
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 openLast updated