This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 . | |
git commit -m "Start with create-react-app" | |
git push heroku master | |
heroku open |