Skip to content

Commit bfc1a7f

Browse files
committed
🌱
0 parents  commit bfc1a7f

File tree

3 files changed

+69
-0
lines changed

3 files changed

+69
-0
lines changed

.buildpacks

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
https://github.com/heroku/heroku-buildpack-nodejs.git
2+
https://github.com/mars/create-react-app-inner-buildpack.git#v1.0.0
3+
https://github.com/heroku/heroku-buildpack-static.git

LICENSE

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
The MIT License (MIT)
2+
Copyright (c) 2016 Mars Hall
3+
4+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
5+
6+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
7+
8+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

README.md

+58
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
Heroku Buildpack for create-react-app
2+
=====================================
3+
4+
Deploy React.js web apps generated with [create-react-app](https://github.com/facebookincubator/create-react-app).
5+
6+
> Automates deployment with the built-in tooling and serves it up via [Nginx](https://www.nginx.com).
7+
8+
Requires
9+
--------
10+
11+
* [Node.js](https://nodejs.org)
12+
* [create-react-app](https://github.com/facebookincubator/create-react-app)
13+
* `npm install -g create-react-app`
14+
15+
Usage
16+
-----
17+
18+
### Generate a React app
19+
20+
```bash
21+
create-react-app my-app
22+
cd my-app
23+
```
24+
25+
### Make it a git repo
26+
27+
```bash
28+
git init
29+
```
30+
31+
### Create the Heroku app
32+
33+
Requires the [command-line tools](https://toolbelt.heroku.com) & [a free account](https://signup.heroku.com) from Heroku.
34+
35+
```bash
36+
heroku create -b https://github.com/mars/create-react-app-buildpack.git
37+
```
38+
39+
### Build, commit, & deploy ♻️
40+
41+
```bash
42+
npm run build
43+
git add .
44+
git commit -m "react-create-app on Heroku"
45+
git push heroku master
46+
```
47+
48+
### Visit the live React app in your browser
49+
50+
```bash
51+
heroku open
52+
```
53+
54+
### Continue Development
55+
56+
Work with your app locally using `npm start`. See: [create-react-app docs](https://github.com/facebookincubator/create-react-app#getting-started)
57+
58+
Then build, commit, & deploy ♻️

0 commit comments

Comments
 (0)