aegisai / .gitignore
.gitignore
Raw
# AegisAI .gitignore

# Environment Variables
.env
.env.local
.env.*.local

# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
venv/
env/
ENV/
.venv
pip-log.txt
pip-delete-this-directory.txt
.pytest_cache/
.coverage
htmlcov/
*.egg-info/
dist/
build/

# Node.js
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.pnpm-debug.log*
package-lock.json
yarn.lock

# Frontend Build
frontend/dist/
frontend/build/
frontend/.vite/
frontend/.next/
frontend/out/

# IDE
.vscode/
.idea/
*.swp
*.swo
*~
.DS_Store

# Database
*.db
*.sqlite
*.sqlite3
aegis.db

# Evidence & Logs
evidence/
*.log
logs/
*.mp4
*.avi

# Temporary Files
*.tmp
*.temp
.cache/

# OS
Thumbs.db
.DS_Store
desktop.ini

# Docker
.dockerignore

# Testing
.coverage
coverage/
*.cover

# Jupyter Notebooks
.ipynb_checkpoints/

# Secrets
*.key
*.pem
*.cert
secrets/