forked from augustina-jpg/scoopdope
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
83 lines (66 loc) · 1.74 KB
/
.env.example
File metadata and controls
83 lines (66 loc) · 1.74 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# Server
PORT=3000
# Logging
LOG_LEVEL=info
# Database
DATABASE_HOST=localhost
DATABASE_PORT=5432
DATABASE_USER=your_db_user
DATABASE_PASSWORD=your_db_password
DATABASE_NAME=scoopdope
# Auth
JWT_SECRET=your_jwt_secret
# Google OAuth
GOOGLE_CLIENT_ID=your_google_client_id
GOOGLE_CLIENT_SECRET=your_google_client_secret
GOOGLE_CALLBACK_URL=http://localhost:3000/auth/google/callback
# Stellar
STELLAR_NETWORK=testnet
STELLAR_SECRET_KEY=your_stellar_secret_key
STELLAR_HORIZON_URL=https://horizon-testnet.stellar.org
# Soroban
SOROBAN_RPC_URL=https://soroban-testnet.stellar.org
ANALYTICS_CONTRACT_ID=your_analytics_contract_id
TOKEN_CONTRACT_ID=your_token_contract_id
INDEXER_POLL_INTERVAL_MS=5000
STELLAR_WEB_AUTH_DOMAIN=localhost
# Redis
REDIS_URL=redis://localhost:6379
# Throttler
THROTTLE_TTL=60000
THROTTLE_LIMIT=100
# Email
EMAIL_ENABLED=false
EMAIL_HOST=smtp.example.com
EMAIL_PORT=587
EMAIL_SECURE=false
EMAIL_USER=your_email_user
EMAIL_PASS=your_email_password
EMAIL_FROM="Scoopdope" <no-reply@Scoopdope.app>
FRONTEND_URL=http://localhost:3001
# CORS Configuration
CORS_ORIGINS=http://localhost:3001,http://localhost:3000
CORS_CREDENTIALS=true
CORS_MAX_AGE=86400
# Rate Limiting
THROTTLE_TTL=60000
THROTTLE_LIMIT=60
# Sentry
SENTRY_DSN=your_sentry_dsn_here
GIT_COMMIT_SHA=
# Frontend
NEXT_PUBLIC_API_URL=http://localhost:3000
NEXT_PUBLIC_STELLAR_NETWORK=testnet
NEXT_PUBLIC_SENTRY_DSN=your_sentry_dsn_here
NEXT_PUBLIC_GIT_COMMIT_SHA=
# KYC
KYC_PROVIDER_API_KEY=
# AWS (used for Comprehend content moderation)
AWS_REGION=us-east-1
AWS_ACCESS_KEY_ID=your_aws_access_key_id
AWS_SECRET_ACCESS_KEY=your_aws_secret_access_key
# Content Moderation
MODERATION_TOXICITY_THRESHOLD=0.7
# Elasticsearch
ELASTICSEARCH_NODE=http://localhost:9200
ELASTICSEARCH_API_KEY=