Initial commit: Qwen3.6-MoE-35B-A3B server configuration and documentation
This commit is contained in:
commit
b039061615
16 changed files with 1672 additions and 0 deletions
76
.gitignore
vendored
Normal file
76
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,76 @@
|
|||
# Environment files
|
||||
.env
|
||||
.env.local
|
||||
.env.*.local
|
||||
|
||||
# Docker volumes and data
|
||||
docker/volumes/
|
||||
docker/data/
|
||||
docker/tmp/
|
||||
|
||||
# Node modules (if used)
|
||||
node_modules/
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
|
||||
# Python virtual environments
|
||||
venv/
|
||||
env/
|
||||
.env/
|
||||
.venv/
|
||||
*.egg-info/
|
||||
dist/
|
||||
build/
|
||||
|
||||
# IDE files
|
||||
.vscode/
|
||||
.idea/
|
||||
*.swp
|
||||
*.swo
|
||||
*~
|
||||
|
||||
# OS files
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
ehthumbs.db
|
||||
Desktop.ini
|
||||
$RECYCLE.BIN/
|
||||
|
||||
# Logs
|
||||
logs/
|
||||
*.log
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
|
||||
# Cache and temporary files
|
||||
.cache/
|
||||
.tmp/
|
||||
temp/
|
||||
tmp/
|
||||
|
||||
# Docker build cache
|
||||
.docker/
|
||||
|
||||
# Local configuration overrides
|
||||
docker-compose.override.yml
|
||||
|
||||
# Hugging Face cache (if downloaded locally)
|
||||
.huggingface/
|
||||
|
||||
# Model files (large binary files)
|
||||
*.gguf
|
||||
*.bin
|
||||
*.safetensors
|
||||
|
||||
# Backup files
|
||||
*.bak
|
||||
*.backup
|
||||
*~
|
||||
|
||||
# Credentials and sensitive data
|
||||
credentials/
|
||||
secrets/
|
||||
*.pem
|
||||
*.key
|
||||
Loading…
Add table
Add a link
Reference in a new issue