-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.dev.example
More file actions
27 lines (23 loc) · 1.94 KB
/
.env.dev.example
File metadata and controls
27 lines (23 loc) · 1.94 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
# ─────────────────────────────────────────────────────────────────────────────
# .env.dev.example — Local development environment variables
#
# Copy this file to .env.dev and fill in your real values.
# NEVER commit .env.dev to git — it is listed in .gitignore.
# ─────────────────────────────────────────────────────────────────────────────
# ── Google OAuth2 ─────────────────────────────────────────────────────────────
# Create credentials at: https://console.cloud.google.com/apis/credentials
# Set Authorised redirect URI to: http://localhost:8080/login/oauth2/code/google
GOOGLE_CLIENT_ID=your-google-client-id.apps.googleusercontent.com
GOOGLE_CLIENT_SECRET=GOCSPX-your-google-client-secret
# ── JWT ───────────────────────────────────────────────────────────────────────
# Generate a secure base64 secret (min 32 bytes):
# openssl rand -base64 48
JWT_SECRET=your-base64-encoded-jwt-secret
# ── OAuth2 callback ───────────────────────────────────────────────────────────
OAUTH2_REDIRECT_URI=http://localhost:5173/oauth/callback
# ── AWS / LocalStack S3 (local dev uses LocalStack — no real AWS needed) ──────
AWS_ACCESS_KEY_ID=test
AWS_SECRET_ACCESS_KEY=test
AWS_REGION=ap-south-1
AWS_S3_BUCKET=saas-documents-dev
AWS_S3_ENDPOINT=http://localhost:4566