diff --git a/.env.example b/.env.example index f91e1ba..a053e5e 100644 --- a/.env.example +++ b/.env.example @@ -1,11 +1,3 @@ -# Intentionally left blank. Do NOT put secrets here. -# Example placeholders (do not set real values): -# PIHOLE_API_URL= -# PIHOLE_PASSWORD= -# Local configuration for tools (no secrets) -# Export before running healthcheck: -# export PIHOLE_API_URL="http://127.0.0.1/api" -# read -s PIHOLE_PASSWORD -# export PIHOLE_PASSWORD +# Pi-hole API settings (leave empty for unauthenticated) PIHOLE_API_URL= -# PIHOLE_PASSWORD is read from environment if set +PIHOLE_PASSWORD= diff --git a/.gitignore b/.gitignore index 88af306..b6ecd62 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,5 @@ # ------------------------------ # General -# ------------------------------ *.log tmp/ .temp/ @@ -11,20 +10,14 @@ tmp/ *~ .DS_Store Thumbs.db - -# ------------------------------ # Copilot / Codex Artefakte -# ------------------------------ *Copilot* *copilot* *.codex .codex/ .codex* codex-debug.log - -# ------------------------------ # Build / Test / Temp -# ------------------------------ /tmp/ /*.out *.pid @@ -34,10 +27,7 @@ coverage/ node_modules/ dist/ build/ - -# ------------------------------ # IDE / Editor -# ------------------------------ .vscode/ .idea/ *.iml @@ -46,62 +36,35 @@ build/ *.njsproj *.sln *.sw? - -# ------------------------------ # OS / Misc -# ------------------------------ ehthumbs.db desktop.ini - -# ------------------------------ # Repo Specific -# ------------------------------ /backup/ /.backup/ /.audit/ /.github/java-upgrade/ - # Local test scripts, not for commit scripts/test-repo.sh - -# ------------------------------ # Agents / Assistants (do not commit) -# ------------------------------ # Ephemeral agent instructions – keep out of repo AGENTS.md !AGENTS.md - # Copilot artefacts copilot-instructions.md -*Copilot* -*copilot* - # Codex artefacts -*.codex -.codex/ -.codex* -codex-debug.log pihole_maintenance_pro_test.sh .venv/ vendor/bundle/ .bundle/ .npm-cache/ - # Additional ignores -.DS_Store -Thumbs.db -node_modules/ -dist/ -build/ out/ __pycache__/ *.pyc .mypy_cache/ .pytest_cache/ .ruff_cache/ -*.log -*.tmp - # Dotenv / local env files .env .env.*