| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- # IDE File
- .idea
- .vscode
- # log File
- logs
- *log.txt
- # Output File
- outputs
- *.wav
- *.mp3
- *.mp4
- # Python tmp File
- __pycache__
- # web tmp File
- node_modules
- dist
- # lockfiles (keep them for reproducible installs)
- !package-lock.json
- !web/package-lock.json
- # env files (can contain secrets)
- .env.local
- web/.env.local
- # local Folder
- data
- volumes
- config.yaml
- .DS_Store
- # Environment variables (contains sensitive API keys)
- .env
- # Electron build output
- dist-electron
- out
- *.exe
- *.dmg
- *.AppImage
- # SSL Certificates (private keys should never be committed)
- certs/*.key
- certs/*.crt
- certs/*.pem
- certs/*.csr
- certs/*.conf
- !certs/README.md
|