diff options
| author | alex <[email protected]> | 2026-07-15 20:24:31 +0200 |
|---|---|---|
| committer | alex <[email protected]> | 2026-07-15 20:24:31 +0200 |
| commit | 8e12cb9bb66adc7adaf6d276133d6f235d294d23 (patch) | |
| tree | 31aa3f6a06407b39bb23d7cc724c70899795a788 /.gitignore | |
| download | order-inventory-system-8e12cb9bb66adc7adaf6d276133d6f235d294d23.tar.xz order-inventory-system-8e12cb9bb66adc7adaf6d276133d6f235d294d23.zip | |
init
Diffstat (limited to '.gitignore')
| -rw-r--r-- | .gitignore | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..229fdf0 --- /dev/null +++ b/.gitignore @@ -0,0 +1,57 @@ +# ========================================== +# 1. Python Environment & Bytecode +# ========================================== +__pycache__/ +*.py[cod] +*$py.class +.venv/ +venv/ +ENV/ +env/ +*.env + +# ========================================== +# 2. Local Configuration & Secrets (CRITICAL) +# ========================================== +.env +.env.local +.env.*.local +*.pem +*.key +*.cert + +# ========================================== +# 3. Testing & Coverage +# ========================================== +.pytest_cache/ +.coverage +htmlcov/ +.pytest_cache/ + +# ========================================== +# 4. Databases (Local SQL testing) +# ========================================== +*.db +*.sqlite3 +postgres-data/ # If you mount your Postgres volume locally + +# ========================================== +# 5. Build, Docker & OS files +# ========================================== +.DS_Store +Thumbs.db +build/ +dist/ +*.egg-info/ +.docker-volumes/ + +# ========================================== +# 6. IDE / Editor Configurations +# ========================================== +.vscode/ +.idea/ +*.suo +*.ntvs* +*.njsproj +*.sln +*.swp |
