e710151c91
- README.md: Etappe 7/8 hinzugefügt, Roadmap aktualisiert
- KONZEPT.md: Feature-Status aktualisiert
- ROADMAP.md: Etappe 7 (Dark Mode) und 8 (SoC) hinzugefügt
- SAVEPOINT.md: v1.8 mit Dark Mode und SoC-Planung
- ARCANE-VM-SETUP.md: Rippy Features hinzugefügt
- ARCAN-FIX.md: Status 21.07.2026 aktualisiert
- ARCAN-PROJECTS-DIR.md: Status hinzugefügt
- ARCANE-DOCKER-COMPOSE-FIX.md: Status aktualisiert
- ARCAN-INTEGRATION.md: Status hinzugefügt
- AGENTS.md: Aktueller Stand und nächste Etappe
- Commit: 9be0592
59 lines
1.6 KiB
Markdown
59 lines
1.6 KiB
Markdown
# Arcane VM Setup - ABGESCHLOSSEN
|
|
|
|
## Status
|
|
- **VM IP:** 192.168.178.162
|
|
- **Arcane:** Erreichbar unter http://192.168.178.162:3552
|
|
- **Docker:** Installiert und läuft
|
|
- **Projects Directory:** /home/arcane/projects
|
|
- **Rippy UI:** http://192.168.178.162:80
|
|
- **Rippy API:** http://192.168.178.162:8000
|
|
- **Git Sync:** Konfiguriert und funktioniert
|
|
|
|
## Nächste Schritte in Arcane
|
|
|
|
1. Öffne http://192.168.178.162:3552
|
|
2. Gehe zu **Projects** → **Add Git Repository**
|
|
3. Repository URL: `https://git.tobisniceshomelab.ddnsfree.com/Hitonabi/rippy.git`
|
|
4. Branch: `main`
|
|
5. Compose File Path: `docker-compose.yml`
|
|
6. Sync Name: `rippy`
|
|
7. **WICHTIG:** Deaktiviere "Sync sibling files" (Bug #2978)
|
|
8. Klicke **Create Sync**
|
|
9. Git Sync erneut versuchen → wird jetzt erfolgreich sein!
|
|
|
|
## Docker Compose Datei
|
|
|
|
Die Datei wurde unter `/home/arcane/docker-compose.yml` erstellt.
|
|
|
|
```yaml
|
|
version: '3.8'
|
|
services:
|
|
arcane:
|
|
image: ghcr.io/getarcaneapp/manager:latest
|
|
container_name: arcane
|
|
ports:
|
|
- '3552:3552'
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
- arcane-data:/app/data
|
|
- /home/arcane/projects:/app/data/projects
|
|
environment:
|
|
- PROJECTS_DIRECTORY=/app/data/projects
|
|
- APP_URL=http://192.168.178.162:3552
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- ENCRYPTION_KEY=<generiert>
|
|
- JWT_SECRET=<generiert>
|
|
restart: unless-stopped
|
|
volumes:
|
|
arcane-data:
|
|
```
|
|
|
|
## Status: Arcane läuft, Rippy Import bereit
|
|
|
|
## Rippy Features
|
|
- ✅ Dark Mode mit Theme-Toggle
|
|
- ✅ React UI mit TailwindCSS
|
|
- ✅ Einstellungen mit Tab-Struktur
|
|
- ✅ Sidebar Navigation
|