mirror of
https://github.com/ZGCA-Forge/MsgCenterPy.git
synced 2025-12-14 13:04:34 +00:00
60 lines
2.8 KiB
PowerShell
60 lines
2.8 KiB
PowerShell
Write-Host "[INFO] Setting up MsgCenterPy development environment..." -ForegroundColor Green
|
|
|
|
# Check if Python is available
|
|
try {
|
|
$pythonVersion = python --version
|
|
Write-Host "[SUCCESS] Found: $pythonVersion" -ForegroundColor Green
|
|
} catch {
|
|
Write-Host "[ERROR] Python 3 is required but not found in PATH." -ForegroundColor Red
|
|
Write-Host "Please install Python 3.10+ and add it to your PATH." -ForegroundColor Yellow
|
|
exit 1
|
|
}
|
|
|
|
# Install the package in development mode
|
|
Write-Host "[INFO] Installing package in development mode..." -ForegroundColor Blue
|
|
pip install -e .[dev]
|
|
if ($LASTEXITCODE -ne 0) {
|
|
Write-Host "[ERROR] Failed to install package in development mode" -ForegroundColor Red
|
|
exit 1
|
|
}
|
|
|
|
# Install pre-commit hooks
|
|
Write-Host "[INFO] Installing pre-commit hooks..." -ForegroundColor Blue
|
|
pre-commit install
|
|
if ($LASTEXITCODE -ne 0) {
|
|
Write-Host "[ERROR] Failed to install pre-commit hooks" -ForegroundColor Red
|
|
exit 1
|
|
}
|
|
|
|
# Install pre-commit hooks for commit-msg (optional)
|
|
Write-Host "[INFO] Installing commit-msg hooks..." -ForegroundColor Blue
|
|
pre-commit install --hook-type commit-msg
|
|
if ($LASTEXITCODE -ne 0) {
|
|
Write-Host "[WARNING] commit-msg hooks installation failed (optional)" -ForegroundColor Yellow
|
|
}
|
|
|
|
# Run pre-commit on all files to check setup
|
|
Write-Host "[INFO] Running pre-commit on all files to verify setup..." -ForegroundColor Blue
|
|
pre-commit run --all-files
|
|
if ($LASTEXITCODE -eq 0) {
|
|
Write-Host "[SUCCESS] Pre-commit setup completed successfully!" -ForegroundColor Green
|
|
Write-Host ""
|
|
Write-Host "[SUCCESS] You're all set! Pre-commit will now run automatically on every commit." -ForegroundColor Green
|
|
Write-Host ""
|
|
Write-Host "[INFO] Quick commands:" -ForegroundColor Cyan
|
|
Write-Host " • Run all hooks manually: pre-commit run --all-files" -ForegroundColor White
|
|
Write-Host " • Update hook versions: pre-commit autoupdate" -ForegroundColor White
|
|
Write-Host " • Skip hooks for one commit: git commit --no-verify" -ForegroundColor White
|
|
Write-Host " • Run tests: pytest" -ForegroundColor White
|
|
Write-Host " • Type checking: mypy msgcenterpy" -ForegroundColor White
|
|
} else {
|
|
Write-Host "[WARNING] Pre-commit found some issues. Please fix them and run 'pre-commit run --all-files' again." -ForegroundColor Yellow
|
|
Write-Host "[TIP] Or use 'pre-commit run --all-files --show-diff-on-failure' to see what needs to be fixed." -ForegroundColor Yellow
|
|
}
|
|
|
|
Write-Host ""
|
|
Write-Host "[INFO] Integration with CI:" -ForegroundColor Cyan
|
|
Write-Host " • CI will run the same pre-commit hooks" -ForegroundColor White
|
|
Write-Host " • If you skip pre-commit locally, CI will catch the issues" -ForegroundColor White
|
|
Write-Host " • Best practice: Always let pre-commit fix issues before committing" -ForegroundColor White
|