-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy path.env.example
More file actions
27 lines (23 loc) · 931 Bytes
/
.env.example
File metadata and controls
27 lines (23 loc) · 931 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
# Required in all environments. Must be at least 32 characters.
QR_SIGNING_KEY=replace_with_a_minimum_32_character_secret_key
# API keys — required, no defaults. Must be at least 32 characters.
# Never use the placeholder values below in production.
# SERVICE_API_KEY=<generate_a_secure_random_32plus_char_secret>
# ADMIN_API_KEY=<generate_a_secure_random_32plus_char_secret>
DATABASE_URL=postgresql://veritix:veritix@localhost:5432/veritix
NEST_API_BASE_URL=https://api.example.com
NEST_API_TOKEN=your_nest_api_token
# WebSocket Session Configuration
SESSION_TIMEOUT_MINUTES=30
# Enable and configure scheduler
ENABLE_ETL_SCHEDULER=true
# Either provide a cron string (UTC) or interval minutes
# ETL_CRON=0 * * * *
ETL_INTERVAL_MINUTES=15
# Optional BigQuery
BQ_ENABLED=false
BQ_PROJECT_ID=your-gcp-project
BQ_DATASET=veritix
BQ_LOCATION=US
BQ_TABLE_EVENT_SUMMARY=event_sales_summary
BQ_TABLE_DAILY_SALES=daily_ticket_sales