Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 2 additions & 10 deletions .env.example
Original file line number Diff line number Diff line change
@@ -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=
37 changes: 0 additions & 37 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
# ------------------------------
# General
# ------------------------------
*.log
tmp/
.temp/
Expand All @@ -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
Expand All @@ -34,10 +27,7 @@ coverage/
node_modules/
dist/
build/

# ------------------------------
# IDE / Editor
# ------------------------------
.vscode/
.idea/
*.iml
Expand All @@ -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.*
Expand Down