Dockerized

This commit is contained in:
Christian Anetzberger
2026-01-26 20:33:52 +01:00
parent e18c14750e
commit 1b5aa90dbe
9 changed files with 279 additions and 101 deletions

94
.gitignore vendored
View File

@@ -1,3 +1,15 @@
# =========================
# OS / Editor
# =========================
.DS_Store
.AppleDouble
.LSOverride
Thumbs.db
.vscode/
.idea/
*.code-workspace
# =========================
# Python
# =========================
@@ -5,55 +17,81 @@ __pycache__/
*.py[cod]
*$py.class
# Virtual environments
.venv/
venv/
env/
ENV/
pip-wheel-metadata/
*.egg-info/
.eggs/
build/
dist/
.pytest_cache/
.mypy_cache/
.ruff_cache/
coverage/
.coverage*
htmlcov/
# =========================
# macOS
# =========================
.DS_Store
.AppleDouble
.LSOverride
# =========================
# IDEs / Editors
# =========================
.vscode/
.idea/
*.swp
*.swo
# =========================
# Logs
# Logs / runtime
# =========================
*.log
*.pid
# =========================
# Job runtime data (generated)
# App runtime data (IMPORTANT)
# =========================
# Job artifacts: uploads, results, dxf/svg previews, logs etc.
_jobs/
_jobs/**
# If you keep a local config volume for dev
_config/
_config/**
# Temp files
tmp/
temp/
*.tmp
# =========================
# Generated outputs
# CAD / output files
# =========================
*.dxf
*.svg
*.json
*.FCStd
*.step
*.stp
*.iges
*.igs
*.stl
*.obj
# If you want to keep example outputs, comment out the lines above selectively
# If you want to keep a sample file, commit it explicitly with:
# git add -f test.step
# =========================
# Temporary files
# Docker
# =========================
*.tmp
*.bak
*.old
# Local overrides
docker-compose.override.yml
# =========================
# OS / misc
# Node (if you ever add frontend tooling)
# =========================
Thumbs.db
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
# =========================
# Secrets (safety)
# =========================
.env
.env.*
*.pem
*.key
*.crt