Skip to content

Commit 92c60d0

Browse files
Initial release: VL-Code v0.9.1 — AI IDE for Visual Language
1 parent 892caad commit 92c60d0

108 files changed

Lines changed: 25828 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.

.env.example

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# VL-Code Configuration
2+
# Copy this file to .env and fill in your values
3+
4+
# Required: Your Anthropic API key
5+
# Get one at https://console.anthropic.com/settings/keys
6+
ANTHROPIC_API_KEY=sk-ant-api03-your-key-here
7+
8+
# Optional: Claude model (default: claude-sonnet-4-6)
9+
# Options: claude-opus-4-6, claude-sonnet-4-6, claude-haiku-4-5-20251001
10+
VL_CODE_MODEL=claude-sonnet-4-6
11+
12+
# Optional: Web IDE port (default: 3200)
13+
# VL_CODE_PORT=3200

.gitignore

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# Dependencies
2+
node_modules/
3+
4+
# Environment & secrets
5+
.env
6+
.env.local
7+
.env.*.local
8+
9+
# VL-Code project data (user-specific)
10+
.vl-code/sessions/
11+
.vl-code/memory/
12+
.vl-code/last-compile.json
13+
.vl-code/project.json
14+
15+
# OS files
16+
.DS_Store
17+
Thumbs.db
18+
19+
# Build artifacts
20+
dist/
21+
__vl_deploy.zip
22+
*.vsix
23+
24+
# Editor files
25+
*.swp
26+
*.swo
27+
*~
28+
29+
# Logs
30+
*.log
31+
npm-debug.log*

0 commit comments

Comments
 (0)