-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
28 lines (22 loc) · 756 Bytes
/
.env.example
File metadata and controls
28 lines (22 loc) · 756 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
# Database
DATABASE_URL="postgresql://USER:PASSWORD@HOST:5432/DBNAME"
# NextAuth
AUTH_SECRET="your-nextauth-secret-here"
NEXTAUTH_URL="http://localhost:3000"
# Discord OAuth (https://discord.com/developers/applications)
AUTH_DISCORD_ID="your-discord-client-id"
AUTH_DISCORD_SECRET="your-discord-client-secret"
# Discord Bot
DISCORD_BOT_TOKEN="your-discord-bot-token"
DISCORD_BOT_API_URL="http://localhost:3001"
DISCORD_BOT_ENABLED="true"
# Email (AWS SES)
EMAIL_FROM="noreply@yourdomain.com"
AWS_ACCESS_KEY_ID="your-aws-access-key-id"
AWS_SECRET_ACCESS_KEY="your-aws-secret-access-key"
AWS_REGION="us-east-1"
AWS_S3_BUCKET="your-s3-bucket-name"
# Geolocation API
GEOLOCATION_API_KEY="your-geolocation-api-key"
# JWT
JWT_SECRET="your-jwt-secret-here"