-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
28 lines (22 loc) · 823 Bytes
/
env.example
File metadata and controls
28 lines (22 loc) · 823 Bytes
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
# GitHub Configuration
# Personal Access Token with 'repo' scope for private repositories
# Generate at: https://github.com/settings/tokens
GITHUB_TOKEN=your_github_token_here
# Server Configuration
SERVER_PORT=4000
PUBLIC_SERVER_URL=http://localhost:4000
WORKSPACE_ROOT=./workspaces
# Security Configuration
# Maximum requests per minute per IP
RATE_LIMIT_MAX_REQUESTS=60
# Rate limit window in minutes
RATE_LIMIT_WINDOW_MINUTES=1
# Optional: Allowed GitHub organizations/users (comma-separated)
# Leave empty to allow all repositories the token has access to
ALLOWED_GITHUB_ORGS=
# Base GitHub user for repository access (default: xak1234)
BASE_GITHUB_USER=xak1234
# Optional: Maximum file size for content fetching (in bytes)
MAX_FILE_SIZE=1048576
# Optional: Session timeout in minutes
SESSION_TIMEOUT_MINUTES=60