Skip to content

Commit

Permalink
[justfile] add run-* commands
Browse files Browse the repository at this point in the history
  • Loading branch information
joel-u410 committed Jul 19, 2024
1 parent 01eafbd commit aa63f8b
Showing 1 changed file with 25 additions and 1 deletion.
26 changes: 25 additions & 1 deletion justfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,28 @@ docker-up:
docker compose up

clean:
cargo clean
cargo clean

run-chain:
(cd chain && ./run.sh)

run-governance:
(cd governance && ./run.sh)

run-parameters:
(cd parameters && ./run.sh)

run-pos:
(cd pos && ./run.sh)

run-rewards:
(cd rewards && ./run.sh)

run-seeder:
(cd seeder && ./run.sh)

run-transactions:
(cd transactions && ./run.sh)

run-webserver:
(cd webserver && ./run.sh)

0 comments on commit aa63f8b

Please sign in to comment.