New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@econlab/ember-cli-deploy-firebase

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@econlab/ember-cli-deploy-firebase

ember-cli-deploy plugin to deploy to firebase

  • 0.3.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1
decreased by-66.67%
Maintainers
1
Weekly downloads
 
Created
Source

ember-cli-deploy-firebase Build Status ember-cli-deploy compatibility badge

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:

$ 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.

  1. 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.
  2. Run source ~/.bashrc or source ~/.profile depending on the above.
  3. Congrats! Your project should run ember deploy production as well as other firebase-tools commands successfully, no addition to config/deploy.js needed.
  4. You can always still add ENV.firebase.deployToken = process.env.FIREBASE_TOKEN but it is not necessary.
Option 2
  1. Run firebase login:ci and copy the code you receive.
  2. (optional) Create a file in the project root .env.deploy.production and add FIREBASE_TOKEN=ASDF1234 replacing ASDF1234 with the code from step 1.
  3. 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.

Keywords

FAQs

Package last updated on 10 Apr 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc