-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
34 lines (27 loc) · 788 Bytes
/
.env.example
File metadata and controls
34 lines (27 loc) · 788 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
29
30
31
32
33
34
# Database
DATABASE_URL=postgres://postgres:postgres@localhost:5432/orcta_dev
# Auth (generate: openssl rand -base64 32)
BETTER_AUTH_SECRET=your-better-auth-secret-min-32-chars
BETTER_AUTH_URL=http://localhost:9999
# URLs
SERVER_URL=http://localhost:9999
FRONTEND_URL=http://localhost:5173
# Redis (optional - for jobs, caching)
REDIS_URL=redis://localhost:6379
# S3/R2 Storage (optional)
# S3_ENDPOINT=https://xxx.r2.cloudflarestorage.com
# S3_REGION=auto
# S3_BUCKET=uploads
# S3_ACCESS_KEY_ID=
# S3_SECRET_ACCESS_KEY=
# Email (optional)
# RESEND_API_KEY=re_xxx
# Social OAuth (optional — add both vars to activate a provider)
# GOOGLE_CLIENT_ID=
# GOOGLE_CLIENT_SECRET=
# GITHUB_CLIENT_ID=
# GITHUB_CLIENT_SECRET=
# Dev settings
NODE_ENV=development
PORT=9999
LOG_LEVEL=debug