gitignore improvement

This commit is contained in:
2025-11-17 23:05:37 +01:00
parent 807033be16
commit 3a65a800bc
3 changed files with 62 additions and 8 deletions

63
.gitignore vendored
View File

@@ -22,6 +22,7 @@ var/
*.egg-info/ *.egg-info/
.installed.cfg .installed.cfg
*.egg *.egg
MANIFEST
# PyInstaller # PyInstaller
*.manifest *.manifest
@@ -37,6 +38,8 @@ htmlcov/
.nox/ .nox/
.coverage .coverage
.coverage.* .coverage.*
**/.coverage
**/.coverage.*
.cache .cache
nosetests.xml nosetests.xml
coverage.xml coverage.xml
@@ -44,18 +47,26 @@ coverage.xml
*.py,cover *.py,cover
.hypothesis/ .hypothesis/
.pytest_cache/ .pytest_cache/
test-results/
test-reports/
# MkDocs documentation # MkDocs documentation
site/ site/
docs/_build/
# PyCharm # PyCharm / IntelliJ IDEA
.idea/ .idea/
*.iml
*.iws
*.ipr
# VS Code # VS Code
.vscode/ .vscode/
*.code-workspace
# Jupyter Notebook # Jupyter Notebook
.ipynb_checkpoints .ipynb_checkpoints
*.ipynb_checkpoints/
# pyenv # pyenv
.python-version .python-version
@@ -77,20 +88,26 @@ cython_debug/
# Environment variables # Environment variables
.env .env
.env.* .env.*
!.env.example
# Virtual environments # Virtual environments
venv/ venv/
ENV/ ENV/
env/ env/
.venv/ .venv/
env.bak/
venv.bak/
# macOS # macOS
.DS_Store .DS_Store
.AppleDouble
.LSOverride
# Windows # Windows
Thumbs.db Thumbs.db
ehthumbs.db ehthumbs.db
Desktop.ini Desktop.ini
$RECYCLE.BIN/
# Database files # Database files
*.sqlite *.sqlite
@@ -101,3 +118,47 @@ Desktop.ini
# Log files # Log files
*.log *.log
logs/ logs/
# Temporary documentation/structure files
*-structure.txt
temp-*.txt
*.tmp
*.temp
# Backup files
*.bak
*.swp
*.swo
*~
.backup/
*.orig
# Static file collections
staticfiles/
static_root/
media/
media_root/
# Celery
celerybeat-schedule
celerybeat.pid
# FastAPI specific
__pypackages__/
# Docker
docker-compose.override.yml
.dockerignore.local
*.override.yml
# Deployment & Security
deployment-local/
*.pem
*.key
!*.pub
secrets/
credentials/
# Alembic
# Note: Keep alembic/versions/ tracked for migrations
# alembic/versions/*.pyc is already covered by __pycache__

7
.idea/misc.xml generated
View File

@@ -1,7 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="Black">
<option name="sdkName" value="Python 3.13 (fastapi-multitenant-ecommerce)" />
</component>
<component name="ProjectRootManager" version="2" project-jdk-name="Python 3.13 (fastapi-multitenant-ecommerce)" project-jdk-type="Python SDK" />
</project>

Binary file not shown.