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.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello, following is the process that I use to setup the
miden-nodeandmiden-fauceton a remote instance:sudo apt update -y && sudo apt upgrade -ymiden-nodeandmiden-faucetlocally:cargo install miden-node miden-faucetmiden-nodeandmiden-faucetin your terminal as they are now executable processes in your pathmiden-nodeandmiden-faucetusesudo touch /etc/systemd/system/miden-node.serviceandsudo 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 midenit will contain all the runtime files for the miden-node and faucetcdinto the miden folder and runmiden-node make-genesis --inputs-path /etc/miden/genesis.tomlmkdir -p bin/faucet/src/then you should usecp -r ../miden-node/bin/faucet/src/static bin/faucet/srcsudo systemctl daemon-reload.sudo systemctl enable miden-node.service && sudo systemctl enable miden-faucet.serviceandsudo systemctl start miden-node.serviceandsudo systemctl start miden-faucet.service0.0.0.0:8080and 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