-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.testing.example
More file actions
38 lines (31 loc) · 1.16 KB
/
env.testing.example
File metadata and controls
38 lines (31 loc) · 1.16 KB
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
29
30
31
32
33
34
35
36
37
38
# KubeBrowse HTTP Testing Environment
# Copy this to .env for local OAuth testing to avoid SSL certificate issues
# Database Configuration
DATABASE_URL=postgres://postgresuser:postgrespassword@localhost:5432/sandbox_db?sslmode=disable
# GitHub OAuth Configuration (HTTP for local testing)
GITHUB_CLIENT_ID=your_github_client_id_here
GITHUB_CLIENT_SECRET=your_github_client_secret_here
GITHUB_CALLBACK_URL=http://localhost:4567/auth/oauth/github/callback
# Frontend URL
FRONTEND_URL=http://localhost:3000
# Session Configuration
SESSION_SECRET=your_session_secret_key_make_it_long_and_random
# Database Configuration
POSTGRES_HOST=localhost
POSTGRES_PORT=5432
POSTGRES_USER=postgresuser
POSTGRES_PASSWORD=postgrespassword
POSTGRES_DB=sandbox_db
# Other settings for local development
GUACD_ADDRESS=localhost:4822
REDIS_HOST=localhost
MINIO_ENDPOINT=localhost:9000
MINIO_ACCESS_KEY=minioaccesskey
MINIO_SECRET_KEY=miniosecretkey
MINIO_BUCKET=local-browser-sandbox
CLAMAV_ADDRESS=http://localhost:3000
ENVIRONMENT=development
# API URLs (HTTP for testing)
VITE_GUAC_CLIENT_URL=http://localhost:4567
GUAC_CLIENT_URL=http://localhost:4567
CADDY_GUAC_CLIENT_URL=http://localhost:4567