forked from Open-LLM-VTuber/Open-LLM-VTuber
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.dockerignore
More file actions
79 lines (62 loc) · 994 Bytes
/
.dockerignore
File metadata and controls
79 lines (62 loc) · 994 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
# User config & backup
/conf.yaml
# Avatars
# avatars/*
# Backgrounds
# backgrounds/*
/conf.yaml.backup
# Default templates retained
!/config_templates/**
# Live2D models - ignore non-defaults
live2d-models/*
!live2d-models/mao_pro/**
!live2d-models/shizuku/**
# Characters
characters/*
# All default characters tracked via git
# System files
.DS_Store
# Python cache
__pycache__/
*.pyc
# IDE & local files
/.idea/
lab.py
# Virtual envs
.venv/
.conda/
conda/
# API keys, secrets
.env
api_keys.py
src/open_llm_vtuber/llm/user_credentials.json
# Database
memory.db*
mem.json
# Logs
server.log
logs/*
# Cache & models
cache/*
asset/
models/*
!models/piper_voice/**
src/open_llm_vtuber/tts/asset/
src/open_llm_vtuber/tts/config/
src/open_llm_vtuber/asr/models/*
!src/open_llm_vtuber/asr/models/silero_vad.onnx
# Misc
tmp/
private/
legacy/
chat_history/
knowledge_base/
submodules/MeloTTS
openapi_*.json
# Windows builds
*.exe
# Packaging artifacts
*.egg-info/
build/
dist/
.cache/