73 lines
734 B
Plaintext
73 lines
734 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
env/
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
|
|
# Virtual Environment
|
|
venv/
|
|
.env
|
|
.venv
|
|
ENV/
|
|
|
|
# Flask
|
|
instance/
|
|
.webassets-cache
|
|
app/data/vpn.db
|
|
*.db
|
|
*.sqlite3
|
|
|
|
# Ansible
|
|
*.retry
|
|
ansible/group_vars/vpn_servers/vault.yml
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
.DS_Store
|
|
|
|
# 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
|
|
logs/
|
|
tmp/
|
|
|
|
# Keys and Sensitive Data
|
|
*.pem
|
|
*.key
|
|
*.crt
|
|
*.cert
|
|
*.p12
|
|
*.pfx
|
|
.env.example |