fix: Enable CGO for SQLite3 database support

- Set CGO_ENABLED=1 in Makefile for all build targets
- Set CGO_ENABLED=1 in Debian build script
- Resolves "go-sqlite3 requires cgo to work" runtime error
- Ensures proper SQLite3 database functionality

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Ole-Morten Duesund 2025-08-31 20:09:50 +02:00
commit 66a6b5b9a2
2 changed files with 4 additions and 4 deletions

View file

@ -36,7 +36,7 @@ cd "$PROJECT_DIR"
# Build the applications
echo_info "Building SkyView applications..."
export CGO_ENABLED=0
export CGO_ENABLED=1
export GOOS=linux
export GOARCH=amd64