diff --git a/.gitignore b/.gitignore index 19abce7..c63becb 100644 --- a/.gitignore +++ b/.gitignore @@ -16,40 +16,58 @@ lib64/ parts/ sdist/ var/ -wheels/ *.egg-info/ .installed.cfg *.egg -# Environment variables +# Virtual Environment +venv/ .env .venv -.env.* -!.env.example +ENV/ + +# Flask +instance/ +.webassets-cache +app/data/vpn.db +*.db +*.sqlite3 # Ansible *.retry -vault.yml -vault.yaml - -# Operating System -.DS_Store -.DS_Store? -._* -.Spotlight-V100 -.Trashes -ehthumbs.db -Thumbs.db +ansible/group_vars/vpn_servers/vault.yml # IDE .idea/ .vscode/ *.swp *.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 +logs/ +tmp/ -# Application Data -data/subscriptions.json -data/*.json +# Keys and Sensitive Data +*.pem +*.key +*.crt +*.cert +*.p12 +*.pfx +.env.example \ No newline at end of file