Answers for "deploying to firebase"

2

firebase only hosting command

firebase deploy --only hosting
Posted by: Guest on December-22-2020
2

firebase deploy

firebase init
firebase deploy
Posted by: Guest on August-12-2021
0

firebase deploy

firebase deploy --only hosting
Posted by: Guest on October-30-2021
0

deploy to firebase using trivis

// get token in terminal
$ firebase login:ci
$ // token here

// add token to travis  settings

// create file .travis.yaml
language: node_js
node_js: 
  - "12"
script:
  - npm install
  - npm run build
  - echo "Deploying!"
install:
  - npm install -g firebase-tools
after_success:
  - firebase deploy --token $FIREBASE_TOKEN
  
  
$ firebase init

$ git push

// done
Posted by: Guest on August-06-2020

Code answers related to "deploying to firebase"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language