# Quick Start

### Overview

This guide provides the **fastest path to running an EPIZO node**. It is designed for users who want a working system immediately, without deep configuration.

An EPIZO node is fully operational after:

1. Installation
2. Accessing the Command Center
3. Downloading initial content

No prior knowledge of blockchain, AI, or distributed systems is required.

***

### Prerequisites

Before starting, ensure:

* A Debian-based system (Ubuntu recommended)
* Terminal access (local or SSH)
* Temporary internet connection (install only)

***

### Step 1 — Clone & Run (Development Mode)

For development or testing environments:

```bash
git clone https://github.com/Project-Epizo/project_epizo_main.git
cd project_epizo_main/admin
npm install
npm run dev
```

This runs the **Command Center only** (no full system orchestration).

***

### Step 2 — Full System Install (Recommended)

For production or real usage, install the full node:

```bash
sudo apt-get update && \
sudo apt-get install -y curl && \
curl -fsSL https://raw.githubusercontent.com/Project-Epizo/project_epizo_main/main/install/install_epizo.sh \
  -o install_epizo.sh && \
sudo bash install_epizo.sh
```

This will:

* Install system dependencies
* Configure services
* Initialize storage
* Launch the EPIZO node

***

### Step 3 — Access the Node

Open a browser and navigate to:

```
http://localhost:8080
```

Or from another device on the same network:

```
http://<DEVICE_IP>:8080
```

***

### Step 4 — Initial Content Setup

Use the **Easy Setup Wizard** in the Command Center to install:

* Knowledge libraries (ZIM / Wikipedia)
* Offline maps
* AI models
* Education content

***

### Result

At this point:

* The node is fully operational
* All services run locally
* Multiple users can connect over LAN
* No internet is required for usage

***

### Notes

* Internet is required only during installation and content download
* All runtime functionality is offline
* System behavior is deterministic once content is installed


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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.projectepizo.com/installing/quick-start.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.
