diff --git a/.gitignore b/.gitignore index ce12f4c..ad658d7 100644 --- a/.gitignore +++ b/.gitignore @@ -11,21 +11,21 @@ __pycache__/ *.so *.egg-info/ .eggs/ -build/ -dist/ +/build/ +/dist/ *.egg # Virtual environments .venv/ -venv/ -env/ -ENV/ +/venv/ +/env/ +/ENV/ # Test and coverage .pytest_cache/ .coverage .coverage.* -htmlcov/ +/htmlcov/ coverage.xml .mypy_cache/ @@ -52,41 +52,15 @@ Thumbs.db /logs/ .ruff_cache/ -# Redis dumps -dump.rdb -*.rdb - # Database files *.db *.db-journal *.db-wal *.db-shm -data/ - -# IDE -.vscode/ -.idea/ -*.swp -*.swo -*~ -.DS_Store - -# Logs -*.log -/logs/ +/data/ # Alembic (autogenerated migrations excluded, but keep 0001) alembic/versions/__pycache__/ -# Frontend build artifacts -frontend/node_modules/ -frontend/dist/ - # Docker .docker-data/ - -# Test artifacts -.pytest_cache/ -.coverage -.coverage.* -htmlcov/