chore: add installer files to .dockerignore and update docs

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
Ulas Kalayci
2026-04-21 13:23:51 +02:00
parent 7795a737c5
commit 196e8a7d17
2 changed files with 35 additions and 0 deletions
+31
View File
@@ -1,3 +1,34 @@
## Quick Install
Two ways to get Oikos running from scratch:
### Option A — CLI Installer (Linux / macOS)
```bash
git clone https://github.com/ulsklyc/oikos.git && cd oikos
bash install.sh
```
The script checks prerequisites, generates security keys, configures optional integrations, starts Docker, and creates your admin account.
Non-interactive mode (CI/provisioning — provide your own `.env`):
```bash
bash install.sh --env-file /path/to/.env
```
### Option B — Web Installer (all platforms with Node.js)
```bash
git clone https://github.com/ulsklyc/oikos.git && cd oikos
node tools/installer/install-server.js
# Open http://localhost:8090
```
Requires Node.js 18+ on the host. Docker still runs the app itself.
---
# Installation Guide
Complete setup instructions for Oikos - from Docker installation to your first login.