Gridlock Demo Setup
Run the demo in under 10 minutes!
1. Setting Up the Orchestration Node
# Download setup files
curl -o orch-node-compose.yml https://raw.githubusercontent.com/GridlockNetwork/orch-node/main/docker-compose.yml
curl -o .env https://raw.githubusercontent.com/GridlockNetwork/orch-node/main/example.env
curl -o nats-server.conf https://raw.githubusercontent.com/GridlockNetwork/orch-node/main/nats-server.conf
# Create a local network so all processes can talk to each other
docker network create gridlock-net 2>/dev/null || true
# Start the orchestration node, database, and networking layer
docker compose -f orch-node-compose.yml -p gridlock-orch-stack up2. Setting Up Guardian Nodes
# Download the guardian nodes setup files
curl -o guardian-nodes-compose.yml https://raw.githubusercontent.com/GridlockNetwork/guardian-node/main/docker-compose.yml
curl -o .env https://raw.githubusercontent.com/GridlockNetwork/guardian-node/main/example.env
# Start the guardian nodes
docker compose -f guardian-nodes-compose.yml up3. Setting Up the CLI
Last updated
Was this helpful?

