Horje
deploy to firebase using trivis Code Example
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




Shell

Related
mv bash Code Example mv bash Code Example
how to upgrade julia Code Example how to upgrade julia Code Example
react native cannot connect to metro server Code Example react native cannot connect to metro server Code Example
file name from path linux Code Example file name from path linux Code Example
sftp remote directory Code Example sftp remote directory Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
7