An ember-cli-deploy plugin to deploy your app to firebase hosting.
This plugin will deploy your ember-cli app to firebase hosting.
A plugin is an addon that can be executed as a part of the ember-cli-deploy pipeline. A plugin will implement one or more of the ember-cli-deploy's pipeline hooks.
For more information on what plugins are and how they work, please refer to the Plugin Documentation.
If you need to continue using firebase 2.x, please use the 0.1.x branch.
To get up and running quickly, do the following:
- Sign up for a Firebase account
- Install the Firebase CLI
$ npm install -g firebase-tools
- Install the ember-cli-deploy tool
$ ember install ember-cli-deploy
- Install this plugin and its dependencies using the plugin pack
$ ember install ember-cli-deploy-firebase-pack
- Set up firebase in your app, answering
dist
when asked 'What directory should be the public root?'.
$ firebase init
- Run the pipeline
$ ember deploy production
- Open your app!
$ firebase open hosting:site
Run the following commands in your terminal:
ember install ember-cli-deploy
ember install ember-cli-deploy-firebase
For detailed information on what plugin hooks are and how they work, please refer to the Plugin Documentation.
upload
For detailed information on how configuration of plugins works, please refer to the Plugin Documentation.
The name of the firebase app you want to deploy to. If not specified, firebase-tools will pick this up from the firebase.json
file it created in your project directory.
ENV = {
...
firebase: {
appName: 'your-firebase-app-name'
},
...
};
If you have multiple firebase users, it's helpful to use a token instead.
- Run
firebase login:ci
and add the code to your ~/.bashrc or ~/.profile:export FIREBASE_TOKEN=ASDF1234
, replacing ASDF1234 with whatever token you received from the previous command. - Run
source ~/.bashrc
orsource ~/.profile
depending on the above. - Congrats! Your project should run
ember deploy production
as well as other firebase-tools commands successfully, no addition to config/deploy.js needed. - You can always still add
ENV.firebase.deployToken = process.env.FIREBASE_TOKEN
but it is not necessary.
- Run
firebase login:ci
and copy the code you receive. - (optional) Create a file in the project root
.env.deploy.production
and addFIREBASE_TOKEN=ASDF1234
replacing ASDF1234 with the code from step 1. - In config/deploy.js
ENV = {
...
firebase: {
deployToken: 'asdf1234'
// deployToken: process.env.FIREBASE_TOKEN (if .env stuff is your style)
},
...
};
After this you should be able to deploy regardless of what account is currently logged in.
If you have customised the location your builds go, we'll pass that on.
If you install the ember-cli-deploy-revision-data plugin, its generated revision key will be used as the deploy message.