-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
25 lines (21 loc) · 1 KB
/
Copy path.env.example
File metadata and controls
25 lines (21 loc) · 1 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
PORT=3000
HOST=0.0.0.0
DATABASE_URL=postgresql://postgres:postgres@localhost:5432/rails
# inline (default): no Redis required; webhooks are processed in-process with retries.
# bullmq: requires REDIS_URL and a separate worker process (npm run dev:worker).
JOB_PROCESSOR=inline
REDIS_URL=redis://localhost:6379
# BullMQ worker tuning (only when JOB_PROCESSOR=bullmq)
# BULLMQ_WORKERS_ENABLED=true
# BULLMQ_STALLED_INTERVAL_MS=120000
# BULLMQ_DRAIN_DELAY_MS=30000
# Set this to the webhook signing key Nomba gave you when deploying.
NOMBA_WEBHOOK_SECRET=replace-with-nomba-webhook-signing-key
RAILS_WEBHOOK_SECRET=replace-with-openssl-rand-base64-32
ADMIN_BOOTSTRAP_TOKEN=replace-with-openssl-rand-base64-32
# Nomba API credentials from the team. Do not commit real values.
NOMBA_BASE_URL=https://sandbox.nomba.com
NOMBA_PARENT_ACCOUNT_ID=replace-with-parent-account-id
NOMBA_SUB_ACCOUNT_ID=replace-with-sub-account-id-from-nomba
NOMBA_CLIENT_ID=replace-with-test-client-id
NOMBA_CLIENT_SECRET=replace-with-test-private-key