Files
pic/.gitignore
T
roof fa00c90328
Unit Tests / test (push) Failing after 57s
chore: remove CLAUDE.md from the repo (Claude Code context, not product docs)
CLAUDE.md is Claude Code tooling context, not product documentation — the
canonical dev/admin/user docs live in README, QUICKSTART, the service-developer
guide, and the Gitea wiki. Keep it local + gitignored so it stays out of the
repository while remaining available to the dev tooling on pic0.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-06-11 10:56:16 -04:00

94 lines
1.2 KiB
Plaintext

# Personal Internet Cell - Git Ignore
# Environment files
.env
.env.local
.env.production
# Data directories (contain sensitive information)
data/
!data/.gitkeep
# Certificates and keys
config/caddy/certs/
config/wireguard/
*.key
*.crt
*.pem
# Runtime-generated config files (machine-specific, generated at startup)
config/api/caddy/Caddyfile
config/api/calendar.json
config/api/cell_config.json
config/api/wireguard.json
config/api/webdav/
config/api/dhcp/
config/api/dns/
config/api/network.json
config/caddy/Caddyfile
config/dhcp/dnsmasq.conf
config/dns/Corefile
config/mail/mailserver.env
config/mail/config/dovecot-quotas.cf
config/ntp/chrony.conf
config/radicale/
config/webdav/users.passwd
# Logs
*.log
logs/
# Docker
.dockerignore
# 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/
# IDE
.vscode/
.idea/
*.swp
*.swo
*~
# OS
.DS_Store
Thumbs.db
# Backups
backups/
*.tar.gz
# Temporary files
*.tmp
*.temp
# Coverage data
.coverage
htmlcov/ CLAUDE.md