@econlab/ember-cli-deploy-firebase
v0.3.1
Published
ember-cli-deploy plugin to deploy to firebase
Downloads
3
Maintainers
Readme
ember-cli-deploy-firebase
An ember-cli-deploy plugin to deploy your app to firebase hosting.
This plugin will deploy your ember-cli app to firebase hosting.
What is an ember-cli-deploy plugin?
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.
Compatibility
If you need to continue using firebase 2.x, please use the 0.1.x branch.
Quick Start
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
$ ember install @econlab/ember-cli-deploy-firebase
- 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
Installation
Run the following commands in your terminal:
ember install ember-cli-deploy
ember install @econlab/ember-cli-deploy-firebase
ember-cli-deploy Hooks Implemented
For detailed information on what plugin hooks are and how they work, please refer to the Plugin Documentation.
upload
Configuration Options
For detailed information on how configuration of plugins works, please refer to the Plugin Documentation.
firebase.appName
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'
},
...
};
firebase.deployToken
If you have multiple firebase users, it's helpful to use a token instead.
Option 1 (Recommended)
- 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.
Option 2
- 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.
build.outputPath
If you have customised the location your builds go, we'll pass that on.
deploy messages
If you install the ember-cli-deploy-revision-data plugin, its generated revision key will be used as the deploy message.