Delete the old Python+React mule-image stack (backend/, frontend/,
docker-compose.yml, mulita.yml, .env*) plus the one-shot migration and
sample dirs (migrate/, photos-sample/, photovault-app-prompt.md). Only
the PhotoPrism + Go sidecar + SvelteKit web stack remains, so drop the
".photoprism." qualifier from the compose+env filenames.
Bind PhotoPrism's port to 127.0.0.1 so the user-facing surface is just
the SvelteKit web/ app; admin reaches PP's UI via SSH tunnel. Flatten
PHOTOPRISM_INDEX_WORKERS' nested default (podman-compose's interpolator
doesn't expand ${A:-${B:-…}}). Rewrite README for the current stack.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
79 lines
838 B
Plaintext
79 lines
838 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
env/
|
|
venv/
|
|
ENV/
|
|
env.bak/
|
|
venv.bak/
|
|
*.egg-info/
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
.mypy_cache/
|
|
.ruff_cache/
|
|
|
|
# Node
|
|
node_modules/
|
|
dist/
|
|
dist-ssr/
|
|
*.local
|
|
.npm
|
|
.pnp.*
|
|
.yarn/*
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.DS_Store
|
|
|
|
# Environment
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# Database
|
|
*.db
|
|
*.sqlite
|
|
*.sqlite3
|
|
/data/
|
|
|
|
# Logs
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
lerna-debug.log*
|
|
|
|
# Build
|
|
build/
|
|
*.pid
|
|
*.seed
|
|
*.pid.lock
|
|
|
|
# Docker
|
|
docker-compose.override.yml
|
|
|
|
# PhotoPrism state (sidecars, cache, thumbs, db backups) — regenerable.
|
|
/pp/storage/
|
|
/pp/import/
|
|
|
|
# Sidecar runtime state (per-user marks etc.) — generated, not seed data.
|
|
/sidecar/data/
|
|
|
|
# Sidecar Go build output.
|
|
/sidecar/mule-sidecar
|
|
|
|
# Photos (for development)
|
|
/photos/
|
|
|
|
# Thumbnails
|
|
/thumbs/
|