5 numbered demos using helper scripts against the live system: 01-install — zero to running node in 30 seconds 02-chain-status — chain info, latest block, on-chain aliases 03-ecosystem-tour — full tour of all 8 services (teaser material) 04-mining — pool stats, miner connection examples 05-exit-node — VPN exit node setup and earning New helpers: last-block.sh, pool-stats.sh, lns-status.sh, explorer-stats.sh Removed old unnumbered demos. Co-Authored-By: Charon <charon@lethean.io>
54 lines
1,005 B
VHS
54 lines
1,005 B
VHS
# 01 — Install Lethean from scratch
|
|
# Shows a home user going from zero to running node
|
|
|
|
Output demos/01-install.gif
|
|
|
|
Set FontSize 13
|
|
Set Width 1000
|
|
Set Height 600
|
|
Set Theme "Dracula"
|
|
Set TypingSpeed 35ms
|
|
Set Padding 12
|
|
Set Shell bash
|
|
|
|
Type "# Install Lethean — from zero to running node"
|
|
Enter
|
|
Sleep 1s
|
|
|
|
Type "mkdir lethean && cd lethean"
|
|
Enter
|
|
Sleep 500ms
|
|
|
|
Type "# Download the compose files"
|
|
Enter
|
|
Type "curl -sO https://forge.lthn.ai/lthn/blockchain/raw/branch/dev/docker/docker-compose.node.yml"
|
|
Enter
|
|
Sleep 500ms
|
|
|
|
Type "curl -sO https://forge.lthn.ai/lthn/blockchain/raw/branch/dev/docker/.env.example"
|
|
Enter
|
|
Sleep 500ms
|
|
|
|
Type "cp .env.example .env"
|
|
Enter
|
|
Sleep 300ms
|
|
|
|
Type "# Set a wallet password"
|
|
Enter
|
|
Type "sed -i 's/WALLET_PASSWORD=/WALLET_PASSWORD=my-secure-pass/' .env"
|
|
Enter
|
|
Sleep 500ms
|
|
|
|
Type ""
|
|
Enter
|
|
Type "# Start the node"
|
|
Enter
|
|
Type "docker compose -f docker-compose.node.yml up -d"
|
|
Enter
|
|
Sleep 3s
|
|
|
|
Type ""
|
|
Enter
|
|
Type "# That's it. Your node is syncing and staking."
|
|
Enter
|
|
Sleep 2s
|