Artifact 4107a6375e442359cc97da660563829f62d1b0cf:
- Executable file wiki_references/2017/software/banking/Interledger/src_from_GitHub/the_repository_clones/ilp-kit/start-all.sh — part of check-in [3d7c129ddd] at 2018-03-21 18:18:26 on branch trunk — banking & unclassified_references (user: martin_vahi, size: 178) [annotate] [blame] [check-ins using]
#!/usr/bin/env bash (cd ledger && npm start) & pid1="$!" (cd api && npm start) & pid2="$!" (cd client && npm start) & pid3="$!" (cd webserver && npm start) & pid4="$!" wait