-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
36 lines (29 loc) · 1.92 KB
/
.env.example
File metadata and controls
36 lines (29 loc) · 1.92 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
# ── Server ──────────────────────────────────────────────
NODE_ENV=development
PORT=8000
# ── Database (PostgreSQL) ────────────────────────────────
POSTGRES_USER=your_postgres_user
POSTGRES_PASSWORD=your_postgres_password
POSTGRES_DB=colabs_db
DATABASE_URL="postgresql://your_postgres_user:your_postgres_password@localhost:5432/colabs_db?schema=public"
# ── Redis ────────────────────────────────────────────────
REDIS_URL="redis://localhost:6379"
# ── JWT ──────────────────────────────────────────────────
JWT_SECRET=your_super_secret_jwt_key_change_in_production
JWT_EXPIRES_IN=7d
# ── GitHub OAuth ─────────────────────────────────────────
GITHUB_CLIENT_ID=your_github_oauth_app_client_id
GITHUB_CLIENT_SECRET=your_github_oauth_app_client_secret
GITHUB_CALLBACK_URL=http://localhost:8000/api/auth/github/callback
# ── GitHub API (for syncing issues/repos) ────────────────
GITHUB_API_TOKEN=your_github_personal_access_token
# ── MinIO Storage ────────────────────────────────────────
MINIO_ENDPOINT=localhost
MINIO_PORT=9000
MINIO_USE_SSL=false
MINIO_ROOT_USER=your_minio_user
MINIO_ROOT_PASSWORD=your_minio_password
MINIO_BUCKET_NAME=colabs
MINIO_PUBLIC_URL=http://localhost:9000/colabs
# ── Frontend ─────────────────────────────────────────────
FRONTEND_URL=http://localhost:3000