-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
32 lines (26 loc) · 1.8 KB
/
.env.example
File metadata and controls
32 lines (26 loc) · 1.8 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
# ─────────────────────────────────────────────
# EventGrid — Environment Variables Example
# Copy to .env and fill in real values locally.
# Never commit .env to version control.
# ─────────────────────────────────────────────
# ── Database ──────────────────────────────────
DATABASE_URL="postgresql://postgres:postgres@localhost:5432/eventgrid?schema=public"
# ── Redis ─────────────────────────────────────
REDIS_URL="redis://localhost:6379"
# ── Auth.js ───────────────────────────────────
NEXTAUTH_SECRET="replace-with-a-long-random-secret"
NEXTAUTH_URL="http://localhost:3000"
# ── API ───────────────────────────────────────
API_URL="http://localhost:4000"
API_INTERNAL_SECRET="replace-with-api-internal-secret"
FRONTEND_URL="http://localhost:3000"
AI_SERVICE_URL="http://localhost:8000"
# ── AWS S3 ────────────────────────────────────
AWS_REGION="us-east-1"
AWS_ACCESS_KEY_ID="your-access-key-id"
AWS_SECRET_ACCESS_KEY="your-secret-access-key"
S3_BUCKET_NAME="eventgrid-assets"
S3_ENDPOINT_URL="" # Leave empty for real AWS; set for LocalStack or MinIO
# ── Frontend ──────────────────────────────────
NEXT_PUBLIC_API_URL="http://localhost:4000"
API_INTERNAL_URL="http://localhost:4000"