Create initial documentation structure

This commit is contained in:
2025-08-31 14:27:00 +02:00
parent 7675271370
commit bd31c03f4a
16 changed files with 3514 additions and 0 deletions

View File

@@ -0,0 +1,55 @@
# Installation
This guide will walk you through installing LlamaCtl on your system.
## Prerequisites
Before installing LlamaCtl, ensure you have:
- Go 1.19 or later
- Git
- Sufficient disk space for your models
## Installation Methods
### Option 1: Download Binary (Recommended)
Download the latest release from our [GitHub releases page](https://github.com/lordmathis/llamactl/releases):
```bash
# Download for Linux
curl -L https://github.com/lordmathis/llamactl/releases/latest/download/llamactl-linux-amd64 -o llamactl
# Make executable
chmod +x llamactl
# Move to PATH (optional)
sudo mv llamactl /usr/local/bin/
```
### Option 2: Build from Source
If you prefer to build from source:
```bash
# Clone the repository
git clone https://github.com/lordmathis/llamactl.git
cd llamactl
# Build the application
go build -o llamactl cmd/server/main.go
```
For detailed build instructions, see the [Building from Source](../development/building.md) guide.
## Verification
Verify your installation by checking the version:
```bash
llamactl --version
```
## Next Steps
Now that LlamaCtl is installed, continue to the [Quick Start](quick-start.md) guide to get your first instance running!