Metadata-Version: 2.4
Name: fort-host
Version: 0.1.1
Summary: A lightweight CLI website hosting tool
Author: Olan
Requires-Python: >=3.9
Description-Content-Type: text/markdown

# Fort Host

A lightweight Python CLI website hoster.

## Install

```bash
pip install fort-host
```

## Commands

Start server:

```bash
fort start
```

Upload a website folder:

```bash
fort upload ./website mysite
```

Create a website:

```bash
fort create mysite
```

List websites:

```bash
fort list
```

Remove a website:

```bash
fort remove mysite
```

Shutdown server:

```bash
fort shutdown
```

## Storage

Fort stores websites in:

```text
~/fort/
└── sites/
    ├── mysite/
    └── another-site/
```

## Access

Open:

```text
http://localhost:8000/
```

Other devices on the same network can use:

```text
http://YOUR_IP:8000/
```

## License

MIT
