gitignore update

This commit is contained in:
Enki 2024-12-30 06:04:48 +00:00
parent 72972efe5e
commit dd2a1b4c83

56
.gitignore vendored
View File

@ -16,40 +16,58 @@ lib64/
parts/ parts/
sdist/ sdist/
var/ var/
wheels/
*.egg-info/ *.egg-info/
.installed.cfg .installed.cfg
*.egg *.egg
# Environment variables # Virtual Environment
venv/
.env .env
.venv .venv
.env.* ENV/
!.env.example
# Flask
instance/
.webassets-cache
app/data/vpn.db
*.db
*.sqlite3
# Ansible # Ansible
*.retry *.retry
vault.yml ansible/group_vars/vpn_servers/vault.yml
vault.yaml
# Operating System
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
# IDE # IDE
.idea/ .idea/
.vscode/ .vscode/
*.swp *.swp
*.swo *.swo
.DS_Store
# Logs # Node/JavaScript
node_modules/
npm-debug.log
yarn-debug.log
yarn-error.log
.npm
.env.local
.env.development.local
.env.test.local
.env.production.local
# Project Specific
.flaskenv
app/static/js/components/*.jsx
app/static/js/utils/wireguard.js
*.log *.log
logs/
tmp/
# Application Data # Keys and Sensitive Data
data/subscriptions.json *.pem
data/*.json *.key
*.crt
*.cert
*.p12
*.pfx
.env.example