Merge pull request #35 from rac2030/firebase

Thanks so much. I tweaked just  few of the words, but this is solid and a great start. Thanks much for your help!
This commit is contained in:
Ryan Watters 2017-03-15 02:30:09 -05:00 committed by GitHub
commit e4c59bf042

View File

@ -23,22 +23,22 @@ aliases: []
Go to the [Firebase console][console] and create a new project (unless you already have a project). You will need to globally install `firebase-tools` (node.js): Go to the [Firebase console][console] and create a new project (unless you already have a project). You will need to globally install `firebase-tools` (node.js):
```sh ```sh
npm install -g firebase-tools npm install -g firebase-tools
``` ```
Log in to Firebase (setup on your local machine) using `firebase login`, which opens a browser where you can select your account. Use `firebase logout` in case you are already logged in but to the wrong account. Log in to Firebase (setup on your local machine) using `firebase login`, which opens a browser where you can select your account. Use `firebase logout` in case you are already logged in but to the wrong account.
```sh ```sh
firebase login firebase login
``` ```
In the root of your Hugo project, initialize the Firebase project with the `firebase init` command: In the root of your Hugo project, initialize the Firebase project with the `firebase init` command:
```sh ```sh
firebase init firebase init
``` ```
From here: From here:
1. Choose Hosting in the feature question 1. Choose Hosting in the feature question
@ -59,6 +59,7 @@ hugo && firebase deploy
You can generate a deploy token using You can generate a deploy token using
```sh ```sh
firebase login:ci firebase login:ci
``` ```