Initial commit of integrated agent system
This commit is contained in:
75
.gitignore
vendored
Normal file
75
.gitignore
vendored
Normal file
@@ -0,0 +1,75 @@
|
||||
# Python
|
||||
__pycache__/
|
||||
*.py[cod]
|
||||
*$py.class
|
||||
*.so
|
||||
.Python
|
||||
build/
|
||||
develop-eggs/
|
||||
dist/
|
||||
eggs/
|
||||
.eggs/
|
||||
lib64/
|
||||
parts/
|
||||
sdist/
|
||||
var/
|
||||
wheels/
|
||||
*.egg-info/
|
||||
.installed.cfg
|
||||
*.egg
|
||||
|
||||
# Virtual Environment
|
||||
/.venv/
|
||||
ENV/
|
||||
|
||||
# Environment Variables
|
||||
.env
|
||||
|
||||
# IDE
|
||||
.idea/
|
||||
.vscode/
|
||||
*.swp
|
||||
*.swo
|
||||
.cursorrules
|
||||
.cursorignore
|
||||
|
||||
# OS
|
||||
.DS_Store
|
||||
|
||||
# Txt files
|
||||
*.txt
|
||||
|
||||
# PDF files
|
||||
*.pdf
|
||||
|
||||
# Frontend
|
||||
node_modules
|
||||
/package.json
|
||||
/package-lock.json
|
||||
|
||||
# Outputs
|
||||
outputs/
|
||||
/production/
|
||||
/smoke_test/
|
||||
|
||||
# Local tooling state
|
||||
.omc/
|
||||
/.pydeps/
|
||||
/referance/
|
||||
|
||||
# Run outputs
|
||||
/runs/
|
||||
|
||||
# Data files
|
||||
backend/data/ret_data/
|
||||
|
||||
# Database files (users will have their own local databases)
|
||||
*.db
|
||||
*.db-journal
|
||||
*.db-wal
|
||||
*.db-shm
|
||||
*.sqlite
|
||||
*.sqlite3
|
||||
|
||||
*.ipynb
|
||||
*.log
|
||||
Reference in New Issue
Block a user