- Create logs directory with .gitkeep - Update .gitignore to track logs dir but ignore log files - Update supervisord.conf with paths relative to /workspace/ai - Add supervisor control scripts to arty.yml (start/stop/status/restart) - All paths now use ../ to reference parent /workspace directory
82 lines
679 B
Plaintext
82 lines
679 B
Plaintext
# Environment variables
|
|
.env
|
|
.env.local
|
|
*.env
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
|
|
# Virtual environments
|
|
venv/
|
|
ENV/
|
|
env/
|
|
|
|
# IDEs
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Docker
|
|
.dockerignore
|
|
|
|
# Logs
|
|
*.log
|
|
logs/*
|
|
!logs/.gitkeep
|
|
*.out
|
|
|
|
# Supervisord runtime files
|
|
supervisord.pid
|
|
supervisor.sock
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Model cache
|
|
huggingface_cache/
|
|
flux/models/
|
|
musicgen/models/
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
tmp/
|
|
temp/
|
|
|
|
# SSH keys
|
|
*.pem
|
|
*.key
|
|
id_rsa*
|
|
id_ed25519*
|
|
known_hosts
|
|
|
|
# Archives
|
|
*.tar.gz
|
|
*.zip
|
|
*.rar
|
|
|
|
# Backups
|
|
*.bak
|
|
*.backup
|