-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
36 lines (30 loc) · 1.29 KB
/
.env.example
File metadata and controls
36 lines (30 loc) · 1.29 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
# Database (Railway Postgres)
# Railway injects DATABASE_URL automatically when a Postgres service is linked.
# For Prisma CLI migrations DIRECT_URL must be set; for Railway it can be the same value.
DATABASE_URL=postgresql://postgres:password@hostname.railway.internal:5432/railway
DIRECT_URL=postgresql://postgres:password@hostname.railway.internal:5432/railway
# File storage (Railway Storage Bucket)
# Railway injects these automatically when a Bucket service is linked to the web service.
BUCKET=my-bucket-xxxxxxxxxxxxxxxx
ACCESS_KEY_ID=your-access-key-id
SECRET_ACCESS_KEY=your-secret-access-key
ENDPOINT=https://storage.railway.app
REGION=auto
# Session (must be at least 32 characters)
SESSION_SECRET=change-this-to-a-random-32-char-minimum-string
# Admin Seed Credentials
ADMIN_USERNAME=admin
ADMIN_PASSWORD=your-strong-password
# Email (Resend)
RESEND_API_KEY=re_...
CONTACT_EMAIL_TO=you@yourdomain.com
RESEND_FROM=noreply@yourdomain.com
# Calendly (optional — omit to show email CTA instead)
NEXT_PUBLIC_CALENDLY_URL=https://calendly.com/your-handle
# App
NEXT_PUBLIC_APP_URL=https://yourdomain.com
NEXT_PUBLIC_SITE_TITLE=Portfolio
NEXT_PUBLIC_EMAIL=you@yourdomain.com
NEXT_PUBLIC_GITHUB_URL=https://github.com/your-username
NEXT_PUBLIC_LINKEDIN_URL=https://linkedin.com/in/your-handle
NODE_ENV=production