-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
54 lines (42 loc) · 1.85 KB
/
Copy path.env.example
File metadata and controls
54 lines (42 loc) · 1.85 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
# Environment Configuration
NODE_ENV=development || production || test
# Client Configuration
CLIENT_URL=https://demo-client.bullreckon.com
# JWT Secrets
JWT_SECRET_EMAIL=demo_jwt_secret_email
JWT_SECRET_PASSWORD=demo_jwt_secret_password
JWT_SECRET_ACCESS=demo_jwt_secret_access
JWT_SECRET_REFRESH=demo_jwt_secret_refresh
# Google OAuth Configuration
# Get these from Google Cloud Console: https://console.cloud.google.com/
NEXT_PUBLIC_GOOGLE_CLIENT_ID=demo_google_client_id.apps.googleusercontent.com
MAILING_SERVICE_CLIENT_ID=demo_google_client_id.apps.googleusercontent.com
MAILING_SERVICE_CLIENT_SECRET=demo_google_client_secret
MAILING_SERVICE_REFRESH_TOKEN=demo_google_refresh_token
# Email Configuration
SENDER_EMAIL_ADDRESS=demo@bullreckon.com
SENDGRID_API_KEY=demo_sendgrid_api_key
# Internal Service Configuration
INTERNAL_SERVICE_SECRET=demo_internal_service_secret
# Microservice URLs
# If you are in nginx proxy mode, use the nginx URL. Otherwise, use the direct service URLs.
MARKET_SERVER_URL=https://demo-market.bullreckon.com
AUTH_SERVER_URL=https://demo-auth.bullreckon.com
CALC_SERVER_URL=https://demo-calc.bullreckon.com
API_SERVER_URL=https://demo-api.bullreckon.com
# Redis Configuration
# If you have a Redis URL, define it below. Otherwise, specify REDIS_HOST, REDIS_PORT, and DISABLE_REDIS_QUEUES.
REDIS_URL=redis://user:password@host:port/db
# If REDIS_URL is not set, use the following:
# If you are using docker compose, set REDIS_HOST to the service name defined in docker-compose.yml
# If you are using redis on localhost, set REDIS_HOST to localhost
REDIS_HOST=demo-redis.bullreckon.com
REDIS_PORT=6379
REDIS_PASSWORD=your-password
# If you wanna test without redis set DISABLE_REDIS_QUEUES=true
DISABLE_REDIS_QUEUES=false
# Worker Configuration
PENDING_ORDER_WORKER_CONCURRENCY=5
EMAIL_WORKER_CONCURRENCY=10
# Rate Limiting
RATE_LIMIT_REQUESTS=100