You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
789 B
29 lines
789 B
# -----------------------------------
|
|
# Server Configuration
|
|
# -----------------------------------
|
|
SERVER_ADDRESS=127.0.0.1
|
|
SERVER_PORT=3000
|
|
|
|
# -----------------------------------
|
|
# HTTP Configuration
|
|
# -----------------------------------
|
|
HTTP_BASE_URL=/api/v1/whatsapp
|
|
|
|
# HTTP_CORS_ORIGIN=*
|
|
# HTTP_BODY_LIMIT_SIZE=8m
|
|
# HTTP_GZIP_LEVEL=1
|
|
|
|
# -----------------------------------
|
|
# Authentication Configuration
|
|
# -----------------------------------
|
|
AUTH_BASIC_USERNAME=admin
|
|
AUTH_BASIC_PASSWORD=83e4060e-78e1-4fe5-9977-aeeccd46a2b8
|
|
|
|
AUTH_JWT_SECRET=9e4eb4cf-be25-4a29-bba3-fefb5a30f6ab
|
|
AUTH_JWT_EXPIRED_HOUR=24
|
|
|
|
# -----------------------------------
|
|
# WhatsApp Configuration
|
|
# -----------------------------------
|
|
WHATSAPP_DB_TYPE=sqlite3
|
|
WHATSAPP_DB_URI=file:dbs/WhatsApp.db?_foreign_keys=on
|