# Getting Started

This quick start is aligned with [Setup Guide](/testnet/setup-guide.md).

## Fast path (Docker recommended)

1. Edit `run/hydra.toml`:
   * `public_address = "<your-public-ip>"` (or leave empty for auto-detect).
   * `mining_author = "<your-base32-mazze-address>"` (optional; required for mining).
2. Start services:

```bash
sudo docker compose up -d
```

3. Check logs:

```bash
sudo docker compose logs node | tail -n 200
sudo docker compose logs miner | tail -n 200
```

4. Verify node ID:

```bash
sudo docker compose logs node | grep "Self node id:" | tail -n 1
```

5. Open CLI and verify status:

```bash
./run/mazze-cli.sh status
./run/mazze-cli.sh summary
```

## Next steps

* Wallet operations: [Mazze CLI](/testnet/mazze-cli.md)
* Mining configuration: [Mining Guide](/testnet/mining.md)
* RPC checks and integration: [RPC Guide](/testnet/rpc.md)
* Log monitoring: [Viewing Mazze Logs](/testnet/viewing-logs.md)


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.mazze.io/testnet/getting-started-with-mazze-testnet.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
