-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
43 lines (33 loc) · 1.03 KB
/
Copy path.env.example
File metadata and controls
43 lines (33 loc) · 1.03 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
37
38
39
40
41
42
43
# Environment Variables Template
# Copy this file to .env and fill in your actual secrets
# NEVER commit .env to version control!
# JWT Configuration
JWT_SECRET=your-super-secret-jwt-key-min-32-chars-recommended
# Admin Credentials
ADMIN_EMAIL=admin@example.com
ADMIN_PASSWORD=your-strong-admin-password
# Email Service (Resend)
RESEND_API_KEY=re_your_actual_resend_api_key
FROM_EMAIL=noreply@yourdomain.com
# SMTP Configuration (if using SMTP instead of Resend)
SMTP_HOST=smtp.resend.com
SMTP_PORT=465
SMTP_USER=resend
SMTP_PASSWORD=your_smtp_password
# OAuth - Google
GOOGLE_CLIENT_ID=your-google-client-id.apps.googleusercontent.com
GOOGLE_CLIENT_SECRET=your-google-client-secret
# OAuth - GitHub
GITHUB_CLIENT_ID=your-github-client-id
GITHUB_CLIENT_SECRET=your-github-client-secret
# SMS - Twilio
TWILIO_ACCOUNT_SID=your-twilio-account-sid
TWILIO_AUTH_TOKEN=your-twilio-auth-token
TWILIO_PHONE_NUMBER=+1234567890
# Database
SCYLLA_URI=127.0.0.1:9042
# Server
SERVER_HOST=0.0.0.0
SERVER_PORT=8080
# General
SITE_URL=http://localhost:8080