design final
This commit is contained in:
parent
a0d2188f6f
commit
99a690972e
1414 changed files with 2389 additions and 1455 deletions
111
.gitignore
vendored
111
.gitignore
vendored
|
|
@ -1,8 +1,105 @@
|
|||
|
||||
# Environment variables (NEVER commit these!)
|
||||
.env
|
||||
__pycache__
|
||||
.continue
|
||||
.venv
|
||||
matrix/data
|
||||
ollama
|
||||
open-webui
|
||||
.env.local
|
||||
.env.*.local
|
||||
# Keep .env.example for reference
|
||||
!.env.example
|
||||
|
||||
# Python
|
||||
__pycache__/
|
||||
*.py[cod]
|
||||
*$py.class
|
||||
*.so
|
||||
.Python
|
||||
build/
|
||||
develop-eggs/
|
||||
dist/
|
||||
downloads/
|
||||
eggs/
|
||||
.eggs/
|
||||
lib/
|
||||
lib64/
|
||||
parts/
|
||||
sdist/
|
||||
var/
|
||||
wheels/
|
||||
pip-wheel-metadata/
|
||||
share/python-wheels/
|
||||
*.egg-info/
|
||||
.installed.cfg
|
||||
*.egg
|
||||
MANIFEST
|
||||
|
||||
# Virtual environments
|
||||
.venv/
|
||||
venv/
|
||||
ENV/
|
||||
env/
|
||||
|
||||
# IDE and editors
|
||||
.vscode/
|
||||
.idea/
|
||||
*.swp
|
||||
*.swo
|
||||
*~
|
||||
.DS_Store
|
||||
.continue/
|
||||
|
||||
# Docker data volumes (NEVER commit these - contain private data!)
|
||||
matrix/data/
|
||||
matrix/*.signing.key
|
||||
ollama/
|
||||
open-webui/
|
||||
data/uploads/
|
||||
data/*.pdf
|
||||
docmost/db/
|
||||
docmost/redis/
|
||||
docmost/storage/
|
||||
bookstack/bookstack_db_data/
|
||||
bookstack/bookstack_app_data/
|
||||
|
||||
# Private keys and certificates
|
||||
*.key
|
||||
*.pem
|
||||
!dhparams.pem
|
||||
*.crt
|
||||
*.p12
|
||||
*.pfx
|
||||
|
||||
# Backup files
|
||||
*.backup
|
||||
*.bak
|
||||
backup/
|
||||
backups/
|
||||
|
||||
# Logs
|
||||
*.log
|
||||
logs/
|
||||
*.log.*
|
||||
|
||||
# OS specific
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
desktop.ini
|
||||
|
||||
# Testing
|
||||
.pytest_cache/
|
||||
.coverage
|
||||
htmlcov/
|
||||
.tox/
|
||||
.hypothesis/
|
||||
|
||||
# Jupyter Notebook
|
||||
.ipynb_checkpoints
|
||||
|
||||
# mypy
|
||||
.mypy_cache/
|
||||
.dmypy.json
|
||||
dmypy.json
|
||||
|
||||
# Database files
|
||||
*.db
|
||||
*.db-shm
|
||||
*.db-wal
|
||||
*.sqlite
|
||||
*.sqlite3
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue