Answers for "deploying react app to firebase"

5

how to deploy react app firebase

npm install -g firebase-tools
firebase login
firebase init

npm run build
firebase deploy
Posted by: Guest on December-17-2020
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 "Javascript"

Browse Popular Code Answers by Language