mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 18:07:58 +00:00
fbba510636
* update README remove matrix links remove playground references (service reported as sunsetting) OSPL rule per Docs style guide * Apply suggestions from code review Co-authored-by: Sacha Lansky <sacha@parity.io> * Update README.md * Apply suggestions from code review Co-authored-by: lisa-parity <92225469+lisa-parity@users.noreply.github.com> * (fix) chmod +x script --------- Co-authored-by: Sacha Lansky <sacha@parity.io> Co-authored-by: lisa-parity <92225469+lisa-parity@users.noreply.github.com> Co-authored-by: parity-processbot <>
11 lines
255 B
Bash
Executable File
11 lines
255 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# This script is meant to be run on Unix/Linux based systems
|
|
set -e
|
|
|
|
echo "*** Start Substrate node template ***"
|
|
|
|
cd $(dirname ${BASH_SOURCE[0]})/..
|
|
|
|
docker-compose down --remove-orphans
|
|
docker-compose run --rm --service-ports dev $@
|