Browse Source

Merge pull request #149 from comit-network/dev-runner

Add a script that can start all processes in a single terminal
fix-bad-api-calls
Mariusz 3 years ago
committed by GitHub
parent
commit
b12d893ac5
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      start_all.sh

5
start_all.sh

@ -0,0 +1,5 @@
#!/usr/bin/env bash
# A simple command to spin up the complete package, ie. both daemons and frontends.
# A single 'ctrl+c' stops all processes.
(trap 'kill 0' SIGINT; cargo run --bin maker & cargo run --bin taker & APP=maker yarn --cwd=./frontend dev & APP=taker yarn --cwd=./frontend dev)
Loading…
Cancel
Save