-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.example
45 lines (38 loc) · 884 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
SMTP_USER="[email protected]"
SMTP_PASSWORD="mypass1234"
SMTP_HOST="smtp_server"
SMTP_PORT="587"
SMTP_DEBUG="0" # default 0
JAWSDB_URL="mysql://user:password@host:port/database_name"
# credentails for created user after db installation
ADMIN_PASSWORD="password"
ADMIN_EMAIL="email_for@user"
LOG_GET_REQUESTS=0 # default 0
TOKEN_SECRET="super_hard_secret"
TOKEN_EXPIRY="1" #in days #default
TOKEN_SIPHER_ALGORITHM="HS512" # default HS512
# ES384
# ES256
# HS256
# HS384
# HS512
# RS256
# RS384
# RS512
# EdDSA
LOG_PATH="./../logs/app.log" # default php://stdout
LOGGER_LEVEL="DEBUG"
# "DEBUG"
# "INFO"
# "NOTICE"
# "WARNING"
# "ERROR"
# "CRITICAL"
# "ALERT"
# "EMERGENCY"
DISPLAY_ERROR_DETAILS=0 # default 0
LOG_ERROR_DETAILS=0 # default 0
LOG_ERROR=0 # default 0
CLOUDINARY_CLOUD_NAME="cloudinary_cloud_name"
CLOUDINARY_SECRET="cloudinary_secret"
CLOUDINARY_KEY="cloudinary_key"