Replies: 4 comments 10 replies
-
Can you change the description to installing the node and faucet from crates.io? We want to set up a CD pipeline for new releases on crates.io |
Beta Was this translation helpful? Give feedback.
-
Did you test those exact steps? If so, for which target architecture? |
Beta Was this translation helpful? Give feedback.
-
Can we remove the requirement from Step 3 to clone the repository and provide the required config files as part of the package downloaded in step 2. |
Beta Was this translation helpful? Give feedback.
-
Issues I encountered while trying to follow the guide:
Overall I was fairly close to getting it working, but the uncertainty of what was happening exactly also led me astray. |
Beta Was this translation helpful? Give feedback.
-
Hello, following is the process that I use to setup the
miden-node
andmiden-faucet
on a remote instance:sudo apt update -y && sudo apt upgrade -y
miden-node
andmiden-faucet
locally:cargo install miden-node miden-faucet
miden-node
andmiden-faucet
in your terminal as they are now executable processes in your pathmiden-node
andmiden-faucet
usesudo touch /etc/systemd/system/miden-node.service
andsudo touch /etc/systemd/system/miden-faucet.service
(code should be provided)mkdir /etc/miden/
and after going back to the miden-node folder, docp config/miden-node.toml /etc/miden/
andcp config/miden-faucet.toml /etc/miden/
andcp config/genesis.toml /etc/miden/
mkdir miden
it will contain all the runtime files for the miden-node and faucetcd
into the miden folder and runmiden-node make-genesis --inputs-path /etc/miden/genesis.toml
mkdir -p bin/faucet/src/
then you should usecp -r ../miden-node/bin/faucet/src/static bin/faucet/src
sudo systemctl daemon-reload
.sudo systemctl enable miden-node.service && sudo systemctl enable miden-faucet.service
andsudo systemctl start miden-node.service
andsudo systemctl start miden-faucet.service
0.0.0.0:8080
and the miden-faucet on0.0.0.0:80
.Hope that you we're able to replicate, if anything please drop a question.
Beta Was this translation helpful? Give feedback.
All reactions