- entrypoint.sh: background process writes onion-hosts.txt with SSH_ONION and ADMIN_ONION - docker-compose.yml: bind mount tor-proxy/hosts for onion address persistence on host - tor-proxy/get-onions.sh: reads onion addresses and updates .env with ADMIN_URL, SSH_ONION, ADMIN_ONION - .gitignore: exclude tor-proxy/hosts/onion-hosts.txt (secret) - tor-proxy/hosts/.gitkeep: ensure directory exists in git
46 lines
581 B
Plaintext
46 lines
581 B
Plaintext
# Dependencies
|
|
node_modules/
|
|
|
|
# Environment
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# Secrets & sensitive data
|
|
docker-compose.override.yml
|
|
wg/
|
|
dump/
|
|
dump.zip
|
|
*.csv
|
|
|
|
# Database
|
|
db/
|
|
*.db
|
|
|
|
# Logs
|
|
*.log
|
|
|
|
# OS
|
|
.DS_Store
|
|
|
|
# Kilo Code — entire directory (agents, skills, rules, workflows, etc.)
|
|
.kilo/
|
|
|
|
# Kilo Code — project-level config files (not part of telegram-shop source)
|
|
kilo-meta.json
|
|
kilo.jsonc
|
|
AGENTS.md
|
|
|
|
# Architect generated maps
|
|
.architect/
|
|
|
|
# Local workspace / worktrees
|
|
.work/
|
|
|
|
# Tor onion addresses (secret)
|
|
tor-proxy/hosts/onion-hosts.txt
|
|
|
|
# Python cache
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo |