Vollstรคndige Setup-Anleitung und Automatisierung fรผr n8n-Installation auf macOS mit OrbStack
Dieses Repository enthรคlt Setup & Dokumentation fรผr n8n auf macOS. Fรผr die eigentlichen Workflows siehe: n8n-workflows Repository
| Repository | Zweck | Inhalt |
|---|---|---|
| ๐ฆ n8n-macos-setup (dieses) | Setup & Infrastruktur | Installation, Docker Config, Skripte, Dokumentation |
| ๐ง n8n-workflows | Workflows & Daten | Workflow-Definitionen, Backups, Custom Nodes |
Zusammenspiel:
- Mit n8n-macos-setup โ n8n installieren & konfigurieren
- Mit n8n-workflows โ Produktive Workflows verwalten & synchronisieren
# 1. Dieses Repository klonen
git clone https://github.com/peerendees/n8n-macos-setup.git
cd n8n-macos-setup
# 2. Automatisches Setup
chmod +x assets/scripts/setup-new-mac.sh
./assets/scripts/setup-new-mac.sh
# 3. Workflows-Repository klonen
cd ~
git clone https://github.com/peerendees/n8n-workflows.git
# 4. Fertig! n8n lรคuft auf http://localhost:5678Zeitaufwand: ~30-45 Minuten
- Installationsanleitungen - Schritt-fรผr-Schritt fรผr neuen Mac
- Docker-Konfiguration - PostgreSQL + Redis + n8n
- Setup-Automatisierung - Ein-Befehl Installation
- Backup-Skripte - Automatische Workflow-Sicherung
- System-Dokumentation - Versionen, Troubleshooting
- Migrations-Guides - Docker Desktop โ OrbStack
- โ Produktive Workflows (โ siehe n8n-workflows)
- โ Workflow-Backups (โ siehe n8n-workflows)
- โ Custom Nodes (โ siehe n8n-workflows)
- โ Credentials (niemals in Git!)
-
- Komplette Schritt-fรผr-Schritt Anleitung
- OrbStack, Docker, n8n Setup
- ~30-45 Minuten
-
- Workflows zwischen Macs รผbertragen
- 3 verschiedene Methoden
- Credentials & Custom Nodes
-
System-Versionen โญ NEU
- Versions-Tracking fรผr beide Macs (M3 & M2)
- Update-Status & verfรผgbare Updates
- Kompatibilitรคts-Matrix
-
- Vollstรคndige System-รbersicht
- Docker-Setup Details
- Verzeichnisse & Cleanup
-
- Docker Desktop โ OrbStack
- Lessons Learned
# 1. Workflows in n8n entwickeln
# 2. Workflows exportieren
cd ~/n8n
./assets/scripts/backup-workflows.sh
# 3. Zu n8n-workflows Repository pushen
cd ~/n8n-workflows
cp ~/n8n/backups/workflows/workflows_*.json .
git add .
git commit -m "Update workflows $(date +%Y%m%d)"
git push# 1. Workflows pullen
cd ~/n8n-workflows
git pull
# 2. In n8n importieren
docker cp workflows_*.json threema_n8n:/tmp/
docker exec threema_n8n n8n import:workflow --input=/tmp/workflows_*.json
# 3. n8n neu laden
open http://localhost:5678n8n-macos-setup/
โโโ README.md # Diese Datei
โโโ docs/
โ โโโ setup/
โ โ โโโ NEUE_INSTALLATION.md # โ Start hier!
โ โ โโโ WORKFLOW_MIGRATION.md
โ โโโ SYSTEM_VERSIONEN.md # โญ Versions-Tracking
โ โโโ migration/
โ
โโโ config-templates/ # Docker & .env Templates
โ โโโ docker-compose.yml.template
โ โโโ env.template
โ โโโ init.sql
โ
โโโ assets/scripts/ # Automatisierungs-Skripte
โ โโโ backup-workflows.sh # Auto-Backup
โ โโโ setup-new-mac.sh # Auto-Setup
โ
โโโ backups/ # Lokale Backups (nicht in Git)
โโโ workflows/
โโโ database/
โโโ config/
Aktueller Status (siehe SYSTEM_VERSIONEN.md):
| Mac | macOS | OrbStack | n8n | PostgreSQL | Redis | Status |
|---|---|---|---|---|---|---|
| M3 | 14.x | 2.0.4 | 1.116.2 | 15 | 7 | โ Produktiv |
| M2 | - | - | - | - | - | โณ Ausstehend |
| Repository | Zweck | Link |
|---|---|---|
| n8n-workflows | Produktive Workflows | โ Repository |
| n8n-macos-setup | Setup & Infrastruktur | [โ dieses Repository] |
- โ Ein-Befehl Setup fรผr neuen Mac
- โ Automatische Backups (Cron-Job ready)
- โ Docker Compose Templates (vollstรคndig kommentiert)
- โ DSGVO-konforme PostgreSQL-Struktur
- โ Versions-Tracking fรผr beide Macs
- โ Troubleshooting Guides
- โ 3 Migrations-Methoden (CLI, Git, Database)
Siehe NEUE_INSTALLATION.md - Troubleshooting
Hรคufige Probleme:
- Container startet nicht โ
docker logs threema_n8n - Port belegt โ Ports in
docker-compose.ymlรคndern - DB-Fehler โ Passwort in
.envprรผfen
-
Setup (einmalig):
# n8n installieren git clone https://github.com/peerendees/n8n-macos-setup.git cd n8n-macos-setup ./assets/scripts/setup-new-mac.sh # Workflows klonen git clone https://github.com/peerendees/n8n-workflows.git ~/n8n-workflows
-
Entwicklung (tรคglich):
# In n8n entwickeln โ http://localhost:5678 # Workflows sichern ~/n8n/assets/scripts/backup-workflows.sh # Zu Git pushen cd ~/n8n-workflows git add . && git commit -m "Update" && git push
-
Synchronisation (andere Macs):
cd ~/n8n-workflows git pull # Workflows importieren (siehe Anleitung)
- ๐ Dokumentation: Siehe
docs/Ordner - ๐ Issues: GitHub Issues
- ๐ฌ n8n Community: https://community.n8n.io
- ๐ OrbStack Docs: https://docs.orbstack.dev
MIT License - siehe LICENSE
- n8n.io - Workflow-Automatisierungs-Plattform
- OrbStack - Docker-Alternative fรผr macOS
- PostgreSQL - Datenbank
- Redis - Cache/Queue
Version: 1.0
n8n Version: 1.116.2
Letzte Aktualisierung: 25. Oktober 2025
Getestet auf: macOS Sonoma 14.x, Apple Silicon M3
โญ Wenn dir dieses Repository hilft, gib ihm einen Star! โญ
Siehe auch: n8n-workflows Repository fรผr produktive Workflows