From dd2a1b4c833c5996ad19694d8e1714d81801fd1f Mon Sep 17 00:00:00 2001 From: Enki Date: Mon, 30 Dec 2024 06:04:48 +0000 Subject: [PATCH] gitignore update --- .gitignore | 56 ++++++++++++++++++++++++++++++++++++------------------ 1 file changed, 37 insertions(+), 19 deletions(-) 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