Skip to content

Latest commit

 

History

History
37 lines (29 loc) · 1.07 KB

TRAVIS.md

File metadata and controls

37 lines (29 loc) · 1.07 KB

Table of Contents generated with DocToc

Configure Travis env

Prerequisities

  1. Follow Travis CLI installation insctructions: https://github.com/travis-ci/travis.rb#installation
  2. Login to Travis by running travis login
  3. Make sure you have followed the Quick Start Guide to generate all .env files.

Encrypting secrets

Then execute the following commands:

  1. Compress secrets:
tar cvf secrets.tar cg/.env cg/.controller.env cg/.processor.env api/.env \
  quorum/node_1/.env quorum/node_2/.env \
  docker/definitions/postgres/.env \
  frontend/.env
  1. Run:
travis encrypt-file secrets.tar --pro
  1. Remove secrets.tar:
rm secrets.tar