2026-07-09 23:00:55 +00:00
|
|
|
# Build context is the repo root (see Services/Website/Dockerfile). Keep the
|
|
|
|
|
# context lean: exclude build artifacts, VCS, IDE cruft, secrets and anything
|
|
|
|
|
# not needed to compile the Swift package.
|
|
|
|
|
|
|
|
|
|
# Version control
|
|
|
|
|
.git
|
|
|
|
|
**/.git
|
|
|
|
|
|
|
|
|
|
# Swift / SPM build artifacts
|
|
|
|
|
**/.build
|
|
|
|
|
**/.swiftpm
|
|
|
|
|
|
2026-08-30 09:53:39 +02:00
|
|
|
# Local database data directory.
|
2026-08-13 15:56:25 +02:00
|
|
|
**/Tests/DB
|
2026-08-13 03:19:10 +02:00
|
|
|
|
2026-07-09 23:00:55 +00:00
|
|
|
# Xcode project (not used by the Linux build)
|
|
|
|
|
*.xcodeproj
|
|
|
|
|
|
2026-07-19 18:23:46 +00:00
|
|
|
# OS / editor / tooling cruft
|
2026-07-09 23:00:55 +00:00
|
|
|
**/.DS_Store
|
|
|
|
|
.vscode
|
2026-07-19 18:23:46 +00:00
|
|
|
.claude
|
2026-07-09 23:00:55 +00:00
|
|
|
|
|
|
|
|
# Local environment overrides and secrets (Compose still reads these from the
|
|
|
|
|
# host at runtime; ignoring them here only keeps them out of the image build).
|
|
|
|
|
**/.env
|
|
|
|
|
**/.env.local
|
|
|
|
|
|
|
|
|
|
# Compose / tooling / docs not needed inside the image
|
|
|
|
|
**/docker-compose.*
|
|
|
|
|
**/Makefile
|
|
|
|
|
**/README.md
|