chore(platform-knowledge): 🔧 Update .gitignore, .gitattributes, and docker-compose.yml configurations
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
This commit is contained in:
parent
d9fec8bd26
commit
51cbb1c050
3 changed files with 0 additions and 65 deletions
5
tools/platform-knowledge/.gitattributes
vendored
5
tools/platform-knowledge/.gitattributes
vendored
|
|
@ -1,5 +0,0 @@
|
|||
# Git LFS tracking for trained model artifacts
|
||||
models/*.gguf filter=lfs diff=lfs merge=lfs -text
|
||||
training/models/**/*.safetensors filter=lfs diff=lfs merge=lfs -text
|
||||
training/models/**/*.bin filter=lfs diff=lfs merge=lfs -text
|
||||
training/models/**/*.gguf filter=lfs diff=lfs merge=lfs -text
|
||||
17
tools/platform-knowledge/.gitignore
vendored
17
tools/platform-knowledge/.gitignore
vendored
|
|
@ -1,17 +0,0 @@
|
|||
# Python
|
||||
.venv/
|
||||
__pycache__/
|
||||
*.pyc
|
||||
*.egg-info/
|
||||
dist/
|
||||
build/
|
||||
|
||||
# IDE
|
||||
.idea/
|
||||
.vscode/
|
||||
|
||||
# OS
|
||||
.DS_Store
|
||||
|
||||
# Environment
|
||||
.env
|
||||
|
|
@ -1,43 +0,0 @@
|
|||
services:
|
||||
crystal-redis:
|
||||
image: redis/redis-stack:7.4.0-v0
|
||||
container_name: crystal-redis
|
||||
ports:
|
||||
- "26384:6379"
|
||||
- "8001:8001"
|
||||
environment:
|
||||
REDIS_ARGS: >-
|
||||
--requirepass kv_dev_password
|
||||
--appendonly yes
|
||||
--maxmemory 1gb
|
||||
--maxmemory-policy allkeys-lru
|
||||
volumes:
|
||||
- crystal-redis-data:/data
|
||||
healthcheck:
|
||||
test: ["CMD", "redis-cli", "-a", "kv_dev_password", "ping"]
|
||||
interval: 5s
|
||||
timeout: 3s
|
||||
retries: 10
|
||||
restart: unless-stopped
|
||||
|
||||
crystal-postgres:
|
||||
image: postgres:16-alpine
|
||||
container_name: crystal-postgres
|
||||
ports:
|
||||
- "25470:5432"
|
||||
environment:
|
||||
POSTGRES_USER: lilith
|
||||
POSTGRES_PASSWORD: kv_dev_password
|
||||
POSTGRES_DB: truth_validation
|
||||
volumes:
|
||||
- crystal-pgdata:/var/lib/postgresql/data
|
||||
healthcheck:
|
||||
test: ["CMD-SHELL", "pg_isready -U lilith"]
|
||||
interval: 5s
|
||||
timeout: 3s
|
||||
retries: 10
|
||||
restart: unless-stopped
|
||||
|
||||
volumes:
|
||||
crystal-redis-data:
|
||||
crystal-pgdata:
|
||||
Loading…
Add table
Reference in a new issue