forked from Project-N-E-K-O/N.E.K.O
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.dockerignore
More file actions
81 lines (67 loc) · 1.19 KB
/
.dockerignore
File metadata and controls
81 lines (67 loc) · 1.19 KB
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
80
81
# Git
.git
.gitignore
.gitattributes
# Python
__pycache__
*.py[cod]
*$py.class
*.so
.Python
*.egg-info
*.egg
# Virtual environments (but keep deps/ for local wheels)
.venv
venv
env
ENV
# Node
node_modules
# IDE
.vscode
.idea
*.swp
*.swo
*~
# Logs
logs/
*.log
N.E.K.O/logs/
# Memory and user data (don't include in image)
memory/store/*
config/core_config.json
config/characters.json
config/user_preferences.json
config/voice_storage.json
N.E.K.O/
# Embedding model weights are intentionally NOT ignored: CI pre-fetches the
# pinned revision on the native runner (cached via actions/cache) and ships it in
# the build context so the in-image step runs fully offline — see step 6b in
# docker/Dockerfile{,.full}. That step force-re-downloads when the bundled
# (repo, revision) doesn't match the pin, so a developer's stale/partial local
# copy riding in via `COPY . /app` is corrected rather than shipped.
# Build artifacts
build/
dist/
*.spec
# OS
.DS_Store
Thumbs.db
# Backup
backup/
*.bak
*.tmp
# Large media files
*.mp4
*.avi
*.mov
*.mkv
# Documentation (optional)
docs/
README*.md
LICENSE
CHANGELOG.md
# Test fixtures
plugin/tests/fixtures/
# Local server (not needed in container)
local_server/