Skip to content

Commit 80a876a

Browse files
authored
Merge pull request #2 from siteboon/dev
Dev
2 parents 01481f9 + 83d3f8d commit 80a876a

Some content is hidden

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

72 files changed

+4053
-565
lines changed

.env.example

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Claude Code UI Environment Configuration
2+
# Only includes variables that are actually used in the code
3+
4+
# =============================================================================
5+
# SERVER CONFIGURATION
6+
# =============================================================================
7+
8+
# Backend server port (Express API + WebSocket server)
9+
#API server
10+
PORT=3008
11+
#Frontend port
12+
VITE_PORT=3009

.gitignore

100644100755
Lines changed: 68 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,14 @@ node_modules/
33
npm-debug.log*
44
yarn-debug.log*
55
yarn-error.log*
6+
pnpm-debug.log*
7+
lerna-debug.log*
68

79
# Build outputs
810
dist/
11+
dist-ssr/
912
build/
10-
*.tsbuildinfo
13+
out/
1114

1215
# Environment variables
1316
.env
@@ -16,17 +19,7 @@ build/
1619
.env.test.local
1720
.env.production.local
1821

19-
# Runtime data
20-
pids
21-
*.pid
22-
*.seed
23-
*.pid.lock
24-
25-
# Coverage directory used by tools like istanbul
26-
coverage/
27-
.nyc_output
28-
29-
# IDE/Editor files
22+
# IDE and editor files
3023
.vscode/
3124
.idea/
3225
*.swp
@@ -43,9 +36,71 @@ ehthumbs.db
4336
Thumbs.db
4437

4538
# Logs
46-
logs
4739
*.log
40+
logs/
41+
42+
# Runtime data
43+
pids
44+
*.pid
45+
*.seed
46+
*.pid.lock
47+
48+
# Coverage directory used by tools like istanbul
49+
coverage/
50+
*.lcov
51+
52+
# nyc test coverage
53+
.nyc_output
54+
55+
# Dependency directories
56+
jspm_packages/
57+
58+
# Optional npm cache directory
59+
.npm
60+
61+
# Optional eslint cache
62+
.eslintcache
63+
64+
# Optional REPL history
65+
.node_repl_history
66+
67+
# Output of 'npm pack'
68+
*.tgz
69+
70+
# Yarn Integrity file
71+
.yarn-integrity
72+
73+
# dotenv environment variables file
74+
.env.test
75+
76+
# parcel-bundler cache (https://parceljs.org/)
77+
.cache
78+
.parcel-cache
79+
80+
# Next.js build output
81+
.next
82+
83+
# Nuxt.js build / generate output
84+
.nuxt
85+
86+
# Storybook build outputs
87+
.out
88+
.storybook-out
4889

4990
# Temporary folders
5091
tmp/
5192
temp/
93+
94+
# Vite
95+
.vite/
96+
97+
# Local Netlify folder
98+
.netlify
99+
100+
# Claude specific
101+
.claude/
102+
103+
# Database files
104+
*.db
105+
*.sqlite
106+
*.sqlite3

LICENSE

100644100755
File mode changed.

README.md

100644100755
File mode changed.

index.html

100644100755
File mode changed.

0 commit comments

Comments
 (0)