93347b47a8
* Force ln to mitigate error when postinstall is repeated * Update readme * Using yarn in place of npm run * Changed env order - home first * Removed gh-pages UI deploy * Readme cosmetics * Removed duplicate bridge overview * Update readme * Update repository address * Update readme * Changed NPM to Yarn everywhere * Update readme * Using tokenbridge monorepo in deployment instead of token-bridge * Update ui/README.md Co-Authored-By: Andrew Gross <andogro@gmail.com> * Revert and/or change as per @akolotov explanation * Removed checkWorker3 that was used in legacy bridge-rust-v1-native-to-erc * Update deployment/oracle/README.md Co-Authored-By: Alexander Kolotov <alexandr.kolotov@gmail.com> * Apply suggestions from code review Co-Authored-By: Alexander Kolotov <alexandr.kolotov@gmail.com> * Update root readme and Update sub-repo readmes to point to root monorepository initialization. * Removed obsolete GET /stuckTransfers * Remove stuckTransfers * Use shell instead of unmaintained docker_service module. Update naming in templates.
23 lines
935 B
Bash
Executable File
23 lines
935 B
Bash
Executable File
cd $(dirname $0)
|
|
|
|
docker-compose down
|
|
docker-compose up -d --build --force-recreate
|
|
|
|
docker-compose run e2e yarn workspace oracle-e2e run deploy
|
|
docker-compose run -d bridge yarn watcher:signature-request
|
|
docker-compose run -d bridge yarn watcher:collected-signatures
|
|
docker-compose run -d bridge yarn watcher:affirmation-request
|
|
docker-compose run -d bridge-erc yarn watcher:signature-request
|
|
docker-compose run -d bridge-erc yarn watcher:collected-signatures
|
|
docker-compose run -d bridge-erc yarn watcher:affirmation-request
|
|
docker-compose run -d bridge-erc-native yarn watcher:signature-request
|
|
docker-compose run -d bridge-erc-native yarn watcher:collected-signatures
|
|
docker-compose run -d bridge-erc-native yarn watcher:affirmation-request
|
|
docker-compose run -d bridge yarn sender:home
|
|
docker-compose run -d bridge yarn sender:foreign
|
|
docker-compose run e2e yarn workspace oracle-e2e run start
|
|
|
|
rc=$?
|
|
docker-compose down
|
|
exit $rc
|