forked from netsuitephp/netsuite-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env.example
29 lines (26 loc) · 899 Bytes
/
.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
## General Settings
NETSUITE_ENDPOINT="2021_1"
NETSUITE_HOST="https://webservices.netsuite.com"
NETSUITE_ACCOUNT="MYACCT1"
## Token Based Auth Settings
NETSUITE_HASH_TYPE="sha256"
# Integration Keys
NETSUITE_CONSUMER_KEY=""
NETSUITE_CONSUMER_SECRET=""
# Access Token Keys
NETSUITE_TOKEN_KEY=""
NETSUITE_TOKEN_SECRET=""
## Credential Based Auth Settings (deprecated)
NETSUITE_EMAIL="[email protected]"
NETSUITE_PASSWORD="mySecretPwd"
NETSUITE_APP_ID="AF44ECC6-6691-400C-85A2-9FD7BFABE36E"
NETSUITE_ROLE="1"
## Logging Configuration
# Boolean to control whether to create log files.
#NETSUITE_LOGGING=false
# The directory where log files will be written.
#NETSUITE_LOG_PATH=
# The filename format. %date and %operation are the only usable tokens.
#NETSUITE_LOG_FORMAT="netsuite-php-%date-%operation"
# The DateTime-compatible format used to build the filename
#NETSUITE_LOG_DATEFORMAT="Ymd.His.u"