-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy path.gitignore
More file actions
94 lines (80 loc) · 1.65 KB
/
Copy path.gitignore
File metadata and controls
94 lines (80 loc) · 1.65 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
82
83
84
85
86
87
88
89
90
91
92
93
94
# ---- Python ----
__pycache__/
*.py[cod]
*$py.class
dist
# ---- Virtual envs ----
venv_ace/
venv_test/
.venv/
venv/
env/
ENV/
# ---- CDMF runtime-heavy / user data (DO NOT COMMIT) ----
models/*
ace_models/*
ace_training/*
custom_lora/*
generated/*
training_datasets/*
build_cdmf_distro.bat
build_cdmf_distro.ps1
# Allow placeholder docs if you want to keep folder structure in-repo
!ace_models/.gitkeep
!ace_models/README.md
!ace_models/ACE_STEP_CHANGES.txt
!ace_models/LICENSE.txt
!ace_training/.gitkeep
!ace_training/README.md
!custom_lora/.gitkeep
!custom_lora/README.md
!generated/.gitkeep
!generated/README.md
!training_datasets/.gitkeep
!training_datasets/README.md
# ---- Embedded Python (packaging/runtime dependency; keep out of source repo) ----
python_embed/*
# Allow a small note file if you want
!python_embed/README.md
!python_embed/.gitkeep
# ---- Distro / installer staging outputs ----
CDMF_Distro/
dist/
# Ignore build artifacts but keep build configuration
build/*
!build/macos/
out/
release/
*.dmg
*.app
*.spec.bak
# ---- New UI (React/Vite) ----
ui/node_modules/
ui/dist/
# ---- Minification / tooling caches ----
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# ---- OS / editor noise ----
.DS_Store
Thumbs.db
Desktop.ini
.vscode/
.idea/
# ---- Logs ----
*.log
# ---- Test scripts ----
check_pyinstaller_data_placement.py
# ---- Secrets / env ----
.env
.env.*
*.key
*.pem
*.pfx
# ---- Optional: keep binaries out of source control ----
CDMF.exe
# ---- macOS fork notes ----
# CDMF.bat and requirements_ace_windows_reference.txt kept for reference only
# This fork is macOS-focused; use CDMF.sh and requirements_ace_macos.txt
venv_build/