Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
decb0db
initial version of Dockerfile for synthetic network aleph-node
fixxxedpoint Dec 5, 2022
437921d
working synthetic-network
fixxxedpoint Dec 5, 2022
511e121
build script for aleph-node:synthetic-network
fixxxedpoint Dec 5, 2022
fae6256
added script for running synthetic-network
fixxxedpoint Dec 5, 2022
6b2f125
added descriptive log line to run-synthetic-network
fixxxedpoint Dec 5, 2022
c3b46ad
extended `help` of run_consensus_synthetic-network.sh
fixxxedpoint Dec 5, 2022
61b5ec5
refactored build_synthetic-network...
fixxxedpoint Dec 5, 2022
75abb85
added script for running scripts for synthetic-network
fixxxedpoint Dec 5, 2022
afb6969
refactored synthetic-network scripts
fixxxedpoint Dec 6, 2022
f61ae0a
refactored run_script_for_synthetic-network.sh
fixxxedpoint Dec 6, 2022
f4c7e86
refactored run_script_for_synthetic-network.sh: added help and args
fixxxedpoint Dec 6, 2022
bc5d27f
added description to patching step in build-synthetic-network script
fixxxedpoint Dec 6, 2022
d607f6a
added description about aleph-node:latest docker image requirement in…
fixxxedpoint Dec 6, 2022
e6cbc9a
reformated Dockerfile.synthetic-network
fixxxedpoint Dec 6, 2022
065dc6f
added PREREQ to run_script_for_synthetic-network.sh
fixxxedpoint Dec 6, 2022
b74c430
+x on synthetic-network scripts
fixxxedpoint Dec 7, 2022
b8f6e58
added note about node.js in run_script_for_synthetic-network.sh
fixxxedpoint Dec 7, 2022
fdaaed1
more robust Dockerfile.synthetic_network
fixxxedpoint Dec 7, 2022
e1b5718
FIX: docker-compose for synthetic-network was using two seperate netw…
fixxxedpoint Dec 7, 2022
20ffabc
added a shell script allowing to reset to default settings a node wit…
fixxxedpoint Dec 7, 2022
4e095f1
moved scripts for synthetic-network
fixxxedpoint Dec 7, 2022
0bc6cf9
example .js script for synthetic-network
fixxxedpoint Dec 7, 2022
0ec5a40
moved synthetic-network scripts
fixxxedpoint Dec 7, 2022
7024beb
added README.md for synthetic-network
fixxxedpoint Dec 7, 2022
7799653
FIX: run_consensus_synthetic-network.sh after it was moved
fixxxedpoint Dec 7, 2022
75439c6
passing args to invoked script in run_script_for_synthetic-network.sh
fixxxedpoint Dec 7, 2022
943190e
small change in README.md for synthetic-network
fixxxedpoint Dec 8, 2022
3bbbad9
review changes for synthetic-network
fixxxedpoint Dec 8, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
passing args to invoked script in run_script_for_synthetic-network.sh
  • Loading branch information
fixxxedpoint committed Dec 8, 2022
commit 75439c6fc3d59430baa911b67d4b51199cb9c360
4 changes: 2 additions & 2 deletions scripts/synthetic-network/run_script_for_synthetic-network.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ while [[ $# -gt 0 ]]; do
shift
;;
*)
error "Unrecognized argument $1!"
break
;;
esac
done
Expand All @@ -60,6 +60,6 @@ git checkout $GIT_COMMIT
cd frontend

log "running .js script"
node $SCRIPT_PATH
node $SCRIPT_PATH ${@:1}

exit 0