| # Virtual environments | |
| .venv/ | |
| venv/ | |
| env/ | |
| # Python cache | |
| __pycache__/ | |
| *.py[cod] | |
| *$py.class | |
| *.so | |
| # Environment files | |
| .env | |
| .env.local | |
| .env.*.local | |
| # Git | |
| .git/ | |
| .gitignore | |
| # Testing | |
| .pytest_cache/ | |
| .coverage | |
| htmlcov/ | |
| *.cover | |
| .hypothesis/ | |
| .tox/ | |
| # Traces and logs | |
| traces/ | |
| *.log | |
| *.trace | |
| # Parlant data | |
| parlant-data/ | |
| # Tests | |
| tests/ | |
| trialpath/tests/ | |
| app/tests/ | |
| # Development files | |
| uv.lock | |
| .python-version | |
| .pre-commit-config.yaml | |
| # IDE | |
| .vscode/ | |
| .idea/ | |
| *.swp | |
| *.swo | |
| *~ | |
| .DS_Store | |
| # Documentation | |
| docs/ | |
| architecture/ | |
| *.md | |
| !README.md | |
| # CI/CD | |
| .github/ | |
| .gitlab-ci.yml | |
| .travis.yml | |
| # Temporary files | |
| tmp/ | |
| temp/ | |
| *.tmp | |