Initial public release of birdwatch-relay
This commit is contained in:
commit
c176f2ad24
17 changed files with 2025 additions and 0 deletions
51
.gitignore
vendored
Normal file
51
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,51 @@
|
|||
/data/
|
||||
*.db
|
||||
*.db-shm
|
||||
*.db-wal
|
||||
|
||||
# Firebase service-account keys (the file format actually downloaded from
|
||||
# Firebase Console looks like `<project>-firebase-adminsdk-<svc>-<hash>.json`).
|
||||
firebase-key.json
|
||||
*firebase-adminsdk*.json
|
||||
serviceAccountKey.json
|
||||
*-credentials.json
|
||||
|
||||
# Customer secrets / runtime config
|
||||
.env
|
||||
.env.*
|
||||
!.env.example
|
||||
docker-compose.yml
|
||||
docker-compose.yml.bak
|
||||
secrets/
|
||||
|
||||
# Build artifacts
|
||||
*.exe
|
||||
/out/
|
||||
relay
|
||||
relay-*
|
||||
|
||||
# TLS / private keys (never commit)
|
||||
*.pem
|
||||
*.key
|
||||
|
||||
# Internal docs (audit reports etc., keep private until released)
|
||||
SECURITY-AUDIT.md
|
||||
|
||||
# Editor / IDE
|
||||
.idea/
|
||||
.vscode/
|
||||
*.iml
|
||||
*.swp
|
||||
*.swo
|
||||
|
||||
# OS artifacts
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
|
||||
# Logs
|
||||
*.log
|
||||
|
||||
# Personal backups (the .bak* convention used while iterating)
|
||||
*.bak
|
||||
*.bak[0-9]
|
||||
*.bak[0-9][0-9]
|
||||
Loading…
Add table
Add a link
Reference in a new issue