Metadata-Version: 2.4
Name: aigon-viewer
Version: 0.9
Summary: Standalone markdown viewer server with local and remote file support
Requires-Python: >=3.10
Requires-Dist: aiofiles>=24.1.0
Requires-Dist: fastapi>=0.104.0
Requires-Dist: httpx>=0.25.0
Requires-Dist: jinja2>=3.1.4
Requires-Dist: markdown>=3.7.0
Requires-Dist: pygments>=2.16.0
Requires-Dist: pymdown-extensions>=10.0.0
Requires-Dist: pyyaml>=6.0.0
Requires-Dist: uvicorn>=0.24.0
Description-Content-Type: text/markdown

# Aigon Viewer Server

A lightweight FastAPI markdown viewer for local files.

## Installation

Prerequisite: Install uv

```bash
curl -LsSf https://astral.sh/uv/install.sh | sh
```

then install aigon-viewer from PyPi

```bash
uv tool install aigon-viewer
```

or directly from GitHub

```bash
uv tool install git+https://github.com/aigonai/aigon-viewer.git
```

### Updating

From PyPi

```bash
uv tool install --upgrade aigon-viewer
```

directly from Github

```bash
uv tool install --force git+https://github.com/aigonai/aigon-viewer.git
```

## Running the Server

### Using `aigonviewer`
*Full CLI with Process Management*

The `aigonviewer` command provides full process management with background execution, status checking, and cleanup.

**Available Commands:**
```bash
aigonviewer launch [OPTIONS]    # Launch server in background
aigonviewer status              # Check running servers
aigonviewer kill [OPTIONS]      # Stop running servers
```

**Launch Options:**
```bash
aigonviewer [launch] [DIRECTORY] [OPTIONS]

Arguments:
  DIRECTORY             Directory to serve (default: current directory)

Options:
  --port, -p PORT       Port to run on (default: 4444)
  --host HOST           Host to bind to (default: 127.0.0.1)
  --foreground, -fg     Run in foreground (don't daemonize)
  --no-browser          Don't open browser automatically
  --remote, -r          Enable remote sources (default: enabled)
  --no-remote           Disable remote sources (local files only)
```

**Examples:**
```bash
# Launch server (simplified syntax)
aigonviewer ~/notes

# Launch on custom port
aigonviewer ~/notes --port 8080

# Launch from current directory
aigonviewer

# Run in foreground (blocks until Ctrl+C)
aigonviewer ~/notes --foreground

# Explicit launch command (also works)
aigonviewer launch ~/notes --port 8080

# Check running servers
aigonviewer status

# Stop all servers
aigonviewer kill

# Stop server on specific port
aigonviewer kill --port 4444
```

### Using `aigonviewer_base`
*Simple Mode*

For simple use cases where you don't need process management, use `aigonviewer_base` which runs directly in the foreground:

```bash
# Basic usage
aigonviewer_base ~/notes

# Custom port and host
aigonviewer_base ~/notes --port 8080 --host 0.0.0.0

# Don't open browser
aigonviewer_base ~/notes --no-browser
```

**Options:**
```bash
aigonviewer_base [PATH] [OPTIONS]

Arguments:
  PATH                   Directory to serve (default: current directory)

Options:
  --version              Show version and exit
  --port PORT            Port to run on (default: 3030)
  --host HOST            Host to bind to (default: 127.0.0.1)
  --remote               Enable remote sources
  --no-browser           Don't automatically open browser
```

## Configuration

The `_config.toml` file is optional. If you create it in your markdown directory, you can organize files into groups and get a dropdown menu to focus on specific file groups.

**Example `_config.toml`:**

```toml
[work]
todo-aigon
agenda
project-notes

[personal]
shopping-list
brain-context-dump
```

**Note:** File names are listed without the `.md` extension.
