ebb3925629
This repo now holds only the deploy pipeline. The application code (src, templates, Dockerfile, pyproject, etc.) is removed and instead cloned from the upstream repository at build time via the new SOURCE_REPO / SOURCE_REF parameters (default: git.resf.org/documentation/rocky-man @ main). The Docker image is built from that clone, eliminating the duplicate copy. Also drop an accidentally committed .ruff_cache blob and ignore the build-time clone dir and ruff cache. Assisted-by: Claude Opus 4 (Claude Code)
53 lines
471 B
Plaintext
53 lines
471 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
MANIFEST
|
|
|
|
# Virtual environments
|
|
venv/
|
|
env/
|
|
ENV/
|
|
.venv
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
.DS_Store
|
|
|
|
# Project specific - generated files
|
|
html/
|
|
tmp/
|
|
.cache/
|
|
|
|
# Application source cloned by the pipeline at build time
|
|
/rocky-man/
|
|
|
|
# UV cache
|
|
.uv_cache/
|
|
|
|
# Ruff cache
|
|
.ruff_cache/
|
|
|
|
# Logs
|
|
*.log
|