This repository has been archived by the owner on Jun 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 94
/
.env.example
49 lines (36 loc) · 1.51 KB
/
.env.example
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
# Copyright (c) Meta Platforms, Inc. and affiliates.
# All rights reserved.
#
# This source code is licensed under the license found in the
# LICENSE file in the root directory of this source tree.
#
# The base URL to send all SDK requests to (default graph.facebook.com).
# This variable should not be used unless necessary for development or special routing needs.
WA_BASE_URL=
# Your Meta for Developers app Id.
M4D_APP_ID=
# Your Meta for Developers Business app secret.
M4D_APP_SECRET=
# Your WhatsApp phone number Id (sender).
WA_PHONE_NUMBER_ID=
# Your WhatsApp business account Id.
WA_BUSINESS_ACCOUNT_ID=
# System user access token. Recommended: Do not use a temporary access token.
CLOUD_API_ACCESS_TOKEN=
# Cloud API version number.
CLOUD_API_VERSION=v16.0
# Customize your incoming webhook listener endpoint. Path should be
# https://{host}/{WEBHOOK_ENDPOINT}. A trailing slash is not added by default,
# so the variable should include that if it's required by your API gateway.
WEBHOOK_ENDPOINT=webhook/
# A custom verification token string to validate incoming webhook payloads.
# Needs to match webhook configuration.
WEBHOOK_VERIFICATION_TOKEN=
# Override the default app listener port (optional & default 3000).
LISTENER_PORT=
# Turn on global debug logging (use for development only!)
DEBUG=true
# The number of request retries after waiting (optional & default 30 retries)
MAX_RETRIES_AFTER_WAIT=
# The timeout period in milliseconds for a request to wait for a response (optional & default 20000ms)
REQUEST_TIMEOUT=