forked from facebook/create-react-app
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
…facebook#1143) * Add deploy to Firebase CDN on template's README (Closes facebook#374) * Move section and minor tweaks
- Loading branch information
1 parent
d52ae67
commit 9fa262f
Showing
1 changed file
with
63 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -49,6 +49,7 @@ You can find the most recent version of this guide [here](https://github.com/fac | |
- [Deployment](#deployment) | ||
- [Serving Apps with Client-Side Routing](#serving-apps-with-client-side-routing) | ||
- [Building for Relative Paths](#building-for-relative-paths) | ||
- [Firebase](#firebase) | ||
- [GitHub Pages](#github-pages) | ||
- [Heroku](#heroku) | ||
- [Modulus](#modulus) | ||
|
@@ -1015,6 +1016,68 @@ To override this, specify the `homepage` in your `package.json`, for example: | |
This will let Create React App correctly infer the root path to use in the generated HTML file. | ||
### Firebase | ||
Install the Firebase CLI if you haven't already by running `npm install -g firebase-tools`. Sign up for a [Firebase account](https://console.firebase.google.com/) and create a new project. Run `firebase login` and login with your previous created Firebase account. | ||
Then run the `firebase init` command from your project's root. You need to choose the **Hosting: Configure and deploy Firebase Hosting sites** and choose the Firebase project you created in the previous step. You will need to agree with `database.rules.json` being created, choose `build` as the public directory, and also agree to **Configure as a single-page app** by replying with `y`. | ||
```sh | ||
=== Project Setup | ||
First, let's associate this project directory with a Firebase project. | ||
You can create multiple project aliases by running firebase use --add, | ||
but for now we'll just set up a default project. | ||
? What Firebase project do you want to associate as default? Example app (example-app-fd690) | ||
=== Database Setup | ||
Firebase Realtime Database Rules allow you to define how your data should be | ||
structured and when your data can be read from and written to. | ||
? What file should be used for Database Rules? database.rules.json | ||
✔ Database Rules for example-app-fd690 have been downloaded to database.rules.json. | ||
Future modifications to database.rules.json will update Database Rules when you run | ||
firebase deploy. | ||
=== Hosting Setup | ||
Your public directory is the folder (relative to your project directory) that | ||
will contain Hosting assets to uploaded with firebase deploy. If you | ||
have a build process for your assets, use your build's output directory. | ||
? What do you want to use as your public directory? build | ||
? Configure as a single-page app (rewrite all urls to /index.html)? Yes | ||
✔ Wrote build/index.html | ||
i Writing configuration info to firebase.json... | ||
i Writing project information to .firebaserc... | ||
✔ Firebase initialization complete! | ||
``` | ||
Now, after you create a production build with `npm run build`, you can deploy it by running `firebase deploy`. | ||
```sh | ||
=== Deploying to 'example-app-fd690'... | ||
i deploying database, hosting | ||
✔ database: rules ready to deploy. | ||
i hosting: preparing build directory for upload... | ||
Uploading: [============================== ] 75%✔ hosting: build folder uploaded successfully | ||
✔ hosting: 8 files uploaded successfully | ||
i starting release process (may take several minutes)... | ||
✔ Deploy complete! | ||
Project Console: https://console.firebase.google.com/project/example-app-fd690/overview | ||
Hosting URL: https://example-app-fd690.firebaseapp.com | ||
``` | ||
For more information see [Add Firebase to your JavaScript Project](https://firebase.google.com/docs/web/setup). | ||
### GitHub Pages | ||
>Note: this feature is available with `[email protected]` and higher. | ||
|