coolify integration.

This commit is contained in:
2026-02-27 08:55:41 -06:00
parent fe66be4aad
commit 2fe49b6725
62 changed files with 6366 additions and 129 deletions

76
cli/local-dev.ps1 Normal file
View File

@@ -0,0 +1,76 @@
# local-dev.ps1 — Build and run any app locally with docker compose
# Usage: .\local-dev.ps1 [-Path <project-dir>] [-Down] [-Logs] [-Build]
#
# Examples:
# .\local-dev.ps1 -Path C:\.bucket\repos.gitea\actual.budget.report
# .\local-dev.ps1 -Path C:\.bucket\repos.gitea\dotrepo.audiosphere\Projects\AudioSphere -Build
# .\local-dev.ps1 -Path C:\.bucket\repos.gitea\dotrepo.audioevents\AudioEvents -Logs
# .\local-dev.ps1 -Path C:\.bucket\repos.gitea\dotrepo.audioevents\AudioEvents -Down
param(
[Parameter(Mandatory=$true)]
[string]$Path,
[switch]$Build,
[switch]$Down,
[switch]$Logs
)
$ErrorActionPreference = "Stop"
# Resolve and validate path
$ProjectDir = Resolve-Path $Path -ErrorAction Stop
$ComposePath = Join-Path $ProjectDir "docker-compose.yml"
if (-not (Test-Path $ComposePath)) {
Write-Host "ERROR: No docker-compose.yml found in $ProjectDir" -ForegroundColor Red
exit 1
}
Write-Host "Project: $ProjectDir" -ForegroundColor Cyan
Push-Location $ProjectDir
try {
if ($Down) {
Write-Host "`nStopping containers..." -ForegroundColor Yellow
docker compose down
Write-Host "Done." -ForegroundColor Green
exit 0
}
if ($Logs) {
Write-Host "`nShowing logs (Ctrl+C to stop)..." -ForegroundColor Yellow
docker compose logs -f
exit 0
}
# Build and start
Write-Host "`nBuilding and starting..." -ForegroundColor Yellow
if ($Build) {
docker compose build --no-cache
}
docker compose up -d --build --force-recreate
Write-Host "`nContainers:" -ForegroundColor Cyan
docker compose ps
# Extract port from docker-compose.yml
$portLine = Select-String -Path $ComposePath -Pattern '(\d+):(\d+)' | Select-Object -First 1
if ($portLine -match '"?\$\{HOST_PORT:-(\d+)\}:(\d+)"?') {
$hostPort = $Matches[1]
Write-Host "`nApp running at: http://localhost:$hostPort" -ForegroundColor Green
} elseif ($portLine -match '"?(\d+):(\d+)"?') {
$hostPort = $Matches[1]
Write-Host "`nApp running at: http://localhost:$hostPort" -ForegroundColor Green
}
Write-Host "`nUseful commands:" -ForegroundColor DarkGray
Write-Host " Logs: .\local-dev.ps1 -Path '$Path' -Logs" -ForegroundColor DarkGray
Write-Host " Stop: .\local-dev.ps1 -Path '$Path' -Down" -ForegroundColor DarkGray
Write-Host " Rebuild: .\local-dev.ps1 -Path '$Path' -Build" -ForegroundColor DarkGray
}
finally {
Pop-Location
}

View File

@@ -33,7 +33,11 @@ const DEFAULT_CONFIG = {
sshKeyPath: '',
targetPath: '',
autoLoad: true,
autoStart: true
autoStart: true,
// Files to upload during deploy (relative to project root)
// Default: tar, docker-compose.yml, .env
// Can add: data/, configs/, etc.
uploadFiles: []
}
};