Skip to content

Commit 5a82d30

Browse files
authored
Merge pull request #1 from Parallel-7/claude/copy-webui-implementation-014xd3CjhToLXPUU8WXE8Qs6
Initial implementation from blueprint
2 parents f8c1d2a + 3be9aba commit 5a82d30

112 files changed

Lines changed: 41395 additions & 0 deletions

File tree

Some content is hidden

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

.gitignore

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
# Manual dependencies (GitHub packages workaround)
2+
.dependencies/
3+
4+
# Reference repository (can be re-cloned as needed)
5+
FlashForgeUI-Electron/
6+
7+
# Node modules
8+
node_modules/
9+
10+
# Build outputs
11+
dist/
12+
build/
13+
out/
14+
15+
# Environment variables
16+
.env
17+
.env.local
18+
.env.*.local
19+
20+
# Logs
21+
logs/
22+
*.log
23+
npm-debug.log*
24+
yarn-debug.log*
25+
yarn-error.log*
26+
pnpm-debug.log*
27+
lerna-debug.log*
28+
29+
# OS files
30+
.DS_Store
31+
Thumbs.db
32+
33+
# IDE files
34+
.vscode/
35+
.idea/
36+
*.swp
37+
*.swo
38+
*~
39+
40+
# Testing
41+
coverage/
42+
43+
# Temporary files
44+
*.tmp
45+
*.temp
46+
.cache/

0 commit comments

Comments
 (0)