Skip to content

Commit 6c67035

Browse files
committed
Init project
1 parent 1082e5b commit 6c67035

388 files changed

Lines changed: 113646 additions & 1 deletion

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.claude/settings.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"permissions": {
3+
"allow": [
4+
"Bash(python inference.py:*)"
5+
]
6+
}
7+
}

.gitignore

Lines changed: 94 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,94 @@
1+
# Dependencies
2+
node_modules/
3+
4+
# Build outputs
5+
dist/
6+
dist-electron/
7+
dist-react/
8+
9+
# Logs
10+
logs
11+
*.log
12+
npm-debug.log*
13+
yarn-debug.log*
14+
yarn-error.log*
15+
pnpm-debug.log*
16+
loglevel.log
17+
18+
# Editor directories and files
19+
.vscode/*
20+
!.vscode/extensions.json
21+
.idea
22+
*.suo
23+
*.ntvs*
24+
*.njsproj
25+
*.sln
26+
*.sw?
27+
28+
# Environment variables
29+
.env
30+
.env.local
31+
.env.*.local
32+
33+
# OS generated files
34+
.DS_Store
35+
.DS_Store?
36+
._*
37+
.Spotlight-V100
38+
.Trashes
39+
ehthumbs.db
40+
Thumbs.db
41+
42+
# Electron build output
43+
out/
44+
release/
45+
46+
# Temporary files
47+
*.tmp
48+
*.temp
49+
.cache/
50+
51+
# Optional npm cache directory
52+
.npm
53+
54+
# Optional eslint cache
55+
.eslintcache
56+
57+
# Optional REPL history
58+
.node_repl_history
59+
60+
# Python virtual environments (for JarvisArt scripts)
61+
__pycache__/
62+
*.py[cod]
63+
*$py.class
64+
*.so
65+
.Python
66+
venv/
67+
ENV/
68+
env/
69+
70+
# JarvisArt temporary outputs
71+
/tmp/
72+
*.pyc
73+
74+
# ==================== 敏感配置文件 (IMPORTANT!) ====================
75+
# 包含 API Keys 的配置文件 - 绝不能提交!
76+
configs/skills.config.json
77+
configs/jarvisx-config.json
78+
configs/*.local.json
79+
80+
# ==================== 用户生成的输出文件 ====================
81+
# 这些目录包含用户生成的测试文件
82+
scripts/Sora2/output/
83+
scripts/Nanobanana/output/
84+
scripts/Nanobanana-Edit/output/
85+
scripts/JarvisArt/clients/output/
86+
87+
# ==================== TypeScript 构建信息 ====================
88+
tsconfig.tsbuildinfo
89+
90+
# ==================== LLaMA-Factory 临时文件 ====================
91+
scripts/JarvisArt/servers/llamafactory/*.egg-info/
92+
scripts/JarvisArt/servers/llamafactory/build/
93+
scripts/JarvisArt/servers/llamafactory/dist/
94+
scripts/JarvisArt/servers/llamafactory/.cache/

.npmrc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# registry=https://registry.npmmirror.com
2+
# electron_mirror=https://npmmirror.com/mirrors/electron/
3+
# # electron_builder_binaries_mirror=https://npmmirror.com/mirrors/electron-builder-binaries/
4+
# # better_sqlite3_binary_host=https://npmmirror.com/mirrors/better-sqlite3

0 commit comments

Comments
 (0)