Compose convention is that override.yml is a per-developer file for local-dev overrides (e.g., forwarding PICLOUD_DEV_MODE + PICLOUD_DEV_INSECURE_KEY to the picloud container without modifying the tracked docker-compose.yml). Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
60 lines
1.0 KiB
Plaintext
60 lines
1.0 KiB
Plaintext
# Rust
|
|
/target
|
|
**/*.rs.bk
|
|
Cargo.lock.bak
|
|
|
|
# IDE
|
|
/.idea
|
|
/.vscode
|
|
*.swp
|
|
*.swo
|
|
.DS_Store
|
|
|
|
# Claude Code — team-wide settings go in .claude/settings.json (tracked);
|
|
# personal grants from in-session prompts live in settings.local.json.
|
|
.claude/settings.local.json
|
|
|
|
# Env / secrets
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# Local-only docker-compose overrides (per-developer)
|
|
docker-compose.override.yml
|
|
|
|
# Local config overrides
|
|
config.local.toml
|
|
/data
|
|
# Files-root blob storage created when integration tests run build_app
|
|
# from the picloud crate dir (PICLOUD_FILES_ROOT default ./data).
|
|
/crates/picloud/data
|
|
/postgres-data
|
|
|
|
# Dashboard
|
|
/dashboard/node_modules
|
|
/dashboard/.svelte-kit
|
|
/dashboard/build
|
|
/dashboard/.env
|
|
|
|
# Dashboard — Playwright E2E
|
|
/dashboard/tests/e2e/.auth
|
|
/dashboard/tests/e2e/.results
|
|
/dashboard/playwright-report
|
|
/dashboard/test-results
|
|
/dashboard/.playwright
|
|
# When playwright is invoked from the repo root by accident, these
|
|
# also land here.
|
|
/playwright-report
|
|
/test-results
|
|
|
|
# Caddy
|
|
/caddy/data
|
|
/caddy/config
|
|
|
|
# Logs
|
|
*.log
|
|
/logs
|
|
|
|
# OS
|
|
Thumbs.db
|