Skip to content

Instantly share code, notes, and snippets.

View mayankshukla5031's full-sized avatar

Mayank Shukla mayankshukla5031

View GitHub Profile
@mayankshukla5031
mayankshukla5031 / create-react-app-on-heroku.sh
Created March 25, 2018 19:41 — forked from mars/create-react-app-on-heroku.sh
Create a React app & deploy to Heroku
## Global install of the app generator
npm install -g create-react-app
## Setup the app (first-time only)
create-react-app my-app
cd my-app
git init
# Create the Heroku app; requires free account at https://www.heroku.com/
heroku create -b https://github.com/heroku/heroku-buildpack-static.git