Fix migration strategy docs to match production

Coolify runs migrations post-deploy via rel/overlays/bin/migrate,
not on boot. Update both architecture and infrastructure docs.

Closes #141
This commit is contained in:
Claudio Ortolina
2026-03-30 14:15:23 +01:00
parent 53178b373b
commit 24f061646e
2 changed files with 7 additions and 2 deletions
+1 -1
View File
@@ -36,7 +36,7 @@ MusicLibrary.Application (one_for_one)
│ ├── Telemetry.Storage # Metrics storage (SQLite-backed, persistent)
│ └── :telemetry_poller # 30s periodic measurements
├── Oban # Background job engine
├── Ecto.Migrator # Auto-migration on boot
├── Ecto.Migrator # Migrations (skipped in release; run by Coolify post-deploy)
├── Task.Supervisor (MusicLibrary.TaskSupervisor)
├── Phoenix.PubSub (:music_library)
└── MusicLibraryWeb.Endpoint