Files
geutebruck/geutebruck-api/install_postgres.ps1
Administrator 14893e62a5 feat: Geutebruck GeViScope/GeViSoft Action Mapping System - MVP
This MVP release provides a complete full-stack solution for managing action mappings
in Geutebruck's GeViScope and GeViSoft video surveillance systems.

## Features

### Flutter Web Application (Port 8081)
- Modern, responsive UI for managing action mappings
- Action picker dialog with full parameter configuration
- Support for both GSC (GeViScope) and G-Core server actions
- Consistent UI for input and output actions with edit/delete capabilities
- Real-time action mapping creation, editing, and deletion
- Server categorization (GSC: prefix for GeViScope, G-Core: prefix for G-Core servers)

### FastAPI REST Backend (Port 8000)
- RESTful API for action mapping CRUD operations
- Action template service with comprehensive action catalog (247 actions)
- Server management (G-Core and GeViScope servers)
- Configuration tree reading and writing
- JWT authentication with role-based access control
- PostgreSQL database integration

### C# SDK Bridge (gRPC, Port 50051)
- Native integration with GeViSoft SDK (GeViProcAPINET_4_0.dll)
- Action mapping creation with correct binary format
- Support for GSC and G-Core action types
- Proper Camera parameter inclusion in action strings (fixes CrossSwitch bug)
- Action ID lookup table with server-specific action IDs
- Configuration reading/writing via SetupClient

## Bug Fixes
- **CrossSwitch Bug**: GSC and G-Core actions now correctly display camera/PTZ head parameters in GeViSet
- Action strings now include Camera parameter: `@ PanLeft (Comment: "", Camera: 101028)`
- Proper filter flags and VideoInput=0 for action mappings
- Correct action ID assignment (4198 for GSC, 9294 for G-Core PanLeft)

## Technical Stack
- **Frontend**: Flutter Web, Dart, Dio HTTP client
- **Backend**: Python FastAPI, PostgreSQL, Redis
- **SDK Bridge**: C# .NET 8.0, gRPC, GeViSoft SDK
- **Authentication**: JWT tokens
- **Configuration**: GeViSoft .set files (binary format)

## Credentials
- GeViSoft/GeViScope: username=sysadmin, password=masterkey
- Default admin: username=admin, password=admin123

## Deployment
All services run on localhost:
- Flutter Web: http://localhost:8081
- FastAPI: http://localhost:8000
- SDK Bridge gRPC: localhost:50051
- GeViServer: localhost (default port)

Generated with Claude Code (https://claude.com/claude-code)

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2025-12-31 18:10:54 +01:00

77 lines
2.6 KiB
PowerShell

# PostgreSQL Installation Script
# Installs PostgreSQL 16 for Windows
$password = "ay8hNQ!"
$installDir = "C:\PostgreSQL\16"
$dataDir = "C:\PostgreSQL\16\data"
$port = 5432
Write-Host "Installing PostgreSQL 16..." -ForegroundColor Green
# Download PostgreSQL installer
$installerUrl = "https://sbp.enterprisedb.com/getfile.jsp?fileid=1258893"
$installerPath = "$env:TEMP\postgresql-16-windows-x64.exe"
Write-Host "Downloading PostgreSQL installer..."
try {
Invoke-WebRequest -Uri $installerUrl -OutFile $installerPath -UseBasicParsing
Write-Host "Download complete!" -ForegroundColor Green
} catch {
Write-Host "Error downloading installer: $_" -ForegroundColor Red
Write-Host "Please download manually from: https://www.enterprisedb.com/downloads/postgres-postgresql-downloads" -ForegroundColor Yellow
exit 1
}
# Install PostgreSQL silently
Write-Host "Installing PostgreSQL (this may take a few minutes)..."
$installArgs = @(
"--mode", "unattended",
"--unattendedmodeui", "none",
"--superpassword", $password,
"--serverport", $port,
"--prefix", $installDir,
"--datadir", $dataDir,
"--servicename", "postgresql-16",
"--enable-components", "server,commandlinetools"
)
try {
Start-Process -FilePath $installerPath -ArgumentList $installArgs -Wait -NoNewWindow
Write-Host "PostgreSQL installed successfully!" -ForegroundColor Green
} catch {
Write-Host "Error during installation: $_" -ForegroundColor Red
exit 1
}
# Add PostgreSQL to PATH
$pgBin = "$installDir\bin"
$currentPath = [Environment]::GetEnvironmentVariable("Path", "Machine")
if ($currentPath -notlike "*$pgBin*") {
Write-Host "Adding PostgreSQL to PATH..."
[Environment]::SetEnvironmentVariable("Path", "$currentPath;$pgBin", "Machine")
$env:Path += ";$pgBin"
}
Write-Host "`nPostgreSQL installed successfully!" -ForegroundColor Green
Write-Host "Location: $installDir" -ForegroundColor Cyan
Write-Host "Port: $port" -ForegroundColor Cyan
Write-Host "Password: $password" -ForegroundColor Cyan
# Test connection
Write-Host "`nTesting connection..."
Start-Sleep -Seconds 5
$env:PGPASSWORD = $password
& "$pgBin\psql.exe" -U postgres -c "SELECT version();" 2>&1 | Out-Null
if ($LASTEXITCODE -eq 0) {
Write-Host "PostgreSQL is running!" -ForegroundColor Green
} else {
Write-Host "Warning: Could not connect to PostgreSQL. Service may still be starting..." -ForegroundColor Yellow
}
Write-Host "`nNext steps:" -ForegroundColor Green
Write-Host "1. Database will be created automatically"
Write-Host "2. Run migrations from: C:\DEV\COPILOT\geutebruck-api\src\api"
Write-Host "3. Command: alembic upgrade head"