-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathenv.web.dev
More file actions
38 lines (27 loc) · 940 Bytes
/
env.web.dev
File metadata and controls
38 lines (27 loc) · 940 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
29
30
31
32
33
34
35
36
37
38
# Base URL for the DOTA server API endpoints
DOTA_SERVER_URL=http://localhost:3010
# Environment mode (development/production)
NODE_ENV=development
# Passwordless authentication token for Google OAuth authentication in development
LOCAL_GOOGLE_TOKEN="passwordless-authentication-token"
# Flag to indicate if we're running in emulated mode (using local services)
EMULATED=true
# Storage provider type (aws/local)
STORAGE_PROVIDER=aws
# AWS credentials for LocalStack (local AWS emulator)
AWS_ACCESS_KEY_ID=localstack
AWS_SECRET_ACCESS_KEY=localstack
# LocalStack S3 endpoint URL
S3_ENDPOINT=http://localhost:4566
# Redis configuration for caching and session management
REDIS_HOST=localhost
REDIS_PORT=6379
# Database configuration for MySQL/PostgreSQL
DB_HOST=localhost
DB_USER=root
DB_PASSWORD=root
DB_NAME=codepushdb
# Port on which the DOTA server will run
PORT=3010
# Port on which the web application will run
WEB_PORT=3000