deploy.sh has tudisco@10.5.2.5 + /home/tudisco/kez-chat baked into
its defaults — it's a personal deploy script, not a generic project
artifact. Same goes for any future *.local.sh / .env / .env.local
files in kez-chat/deploy/.
What stays in git:
- Dockerfile / Dockerfile.sig-server (project infrastructure)
- docker-compose.yml (project infrastructure)
- nats.conf (project infrastructure)
- install-docker.sh (generic Ubuntu setup, no
host-specific info)
What's now gitignored:
- deploy.sh (personal — kept locally)
- *.local.sh (any other personal scripts)
- .env / .env.local (any local config)
39 lines
513 B
Plaintext
39 lines
513 B
Plaintext
# Rust
|
|
target/
|
|
**/*.rs.bk
|
|
Cargo.lock.bak
|
|
|
|
# Node
|
|
node_modules/
|
|
dist/
|
|
*.tsbuildinfo
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# Local runtime state
|
|
*.db
|
|
*.db-journal
|
|
*.db-wal
|
|
*.db-shm
|
|
.kez/
|
|
kez-sigchains.db
|
|
|
|
# Editor / OS
|
|
.DS_Store
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Cross-test artifacts
|
|
/tmp/
|
|
|
|
# Personal deploy scripts (have specific host/path baked in — kept local only)
|
|
kez-chat/deploy/deploy.sh
|
|
kez-chat/deploy/deploy.local.sh
|
|
kez-chat/deploy/*.local.sh
|
|
kez-chat/deploy/.env
|
|
kez-chat/deploy/.env.local
|