42 lines
412 B
Plaintext
42 lines
412 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
.eggs/
|
|
|
|
# Virtual environments
|
|
.venv/
|
|
venv/
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
|
|
# Testing
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
|
|
# OS
|
|
.DS_Store
|
|
|
|
# Tauri
|
|
src-tauri/target/
|
|
src-tauri/gen/
|
|
src-tauri/binaries/agentkit-server-*
|
|
|
|
# PyInstaller
|
|
build/pyinstaller-work/
|
|
*.spec
|
|
|
|
# Frontend build artifacts
|
|
src/agentkit/server/static/
|
|
**/node_modules/
|
|
|
|
# Env
|
|
.env
|