Merge pull request mozilla/fxa-local-dev#72 from mozilla/gen-vapid-keys; r=shane-tomlinson

fix(install): Generate VAPID keys during auth-server install.
This commit is contained in:
Ryan Kelly 2016-10-17 13:44:05 +11:00 коммит произвёл GitHub
Родитель cf59c80a98 2ed4007ac4
Коммит 7f9a097d76
2 изменённых файлов: 3 добавлений и 2 удалений

Просмотреть файл

@ -40,7 +40,7 @@ install:
- npm --version
script:
- if [ $TRAVIS_NODE_VERSION == "4" ]; then export CXX=g++-4.8; fi
- if [ $TRAVIS_NODE_VERSION == "4.5" ]; then export CXX=g++-4.8; fi
- npm config set spin false
- npm install
- ./test/curl.sh

Просмотреть файл

@ -35,7 +35,8 @@ wait
cd fxa-content-server; npm i --production; npm i; cp server/config/local.json-dist server/config/local.json; cd ..
cd fxa-auth-server; npm i; node ./scripts/gen_keys.js; cd ..
cd fxa-auth-server; npm i; node ./scripts/gen_keys.js; node ./scripts/gen_vapid_keys.js ; cd ..
# Install a custom http only verifier
cd browserid-verifier; npm i; npm i vladikoff/browserid-local-verify#http; cd ..