-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy path.env.example
More file actions
32 lines (26 loc) · 893 Bytes
/
.env.example
File metadata and controls
32 lines (26 loc) · 893 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
# Required - set a secure password for admin access
ADMIN_PASSWORD=pass
# Required - for Mixin integration functionality
MIXIN_APP_ID=
MIXIN_SESSION_ID=
MIXIN_SERVER_PUBLIC_KEY=
MIXIN_SESSION_PRIVATE_KEY=
MIXIN_SPEND_PRIVATE_KEY=
MIXIN_OAUTH_SECRET=
# Required - these values must be set for local development
# For Vercel deployments, these are automatically configured when connecting to Vercel Postgres and Redis
POSTGRES_HOST=localhost
POSTGRES_USER=postgres
POSTGRES_PASSWORD=postgres
POSTGRES_DATABASE=mr_market_v2
DATABASE_PORT=5432
REDIS_URL=redis://localhost:6379
# Optional - these values are already set as defaults in the application
MM_BE_PORT=3000
TSE_BE_PORT=3001
ORDER_EXPIRATION_DAYS=7
DATABASE_LOGGING_LEVEL=query,error,migration
DATABASE_SYNCHRONIZE=false
DATABASE_AUTO_RUN_MIGRATIONS=true
DATABASE_SSL=false
MIXIN_OAUTH_SCOPE='PROFILE:READ ASSETS:READ SNAPSHOTS:READ'