# ===== Git ===== .git .gitignore # ===== OS ===== .DS_Store Thumbs.db # ===== Python ===== __pycache__/ *.py[cod] *.pyo *.pyd .Python *.so *.egg-info/ dist/ build/ # ===== Virtual envs ===== .venv venv env/ # ===== Env files ===== .env .env.* !.env.example # ===== Editors ===== .vscode/ .idea/ # ===== Tests ===== tests/ test/ # ===== Docker ===== Dockerfile docker-compose.yml .dockerignore # ===== Chainlit ===== .files/ *.log