mirror of
https://gitlab.com/izyim/prototypes/lumen-microservices/microservice-api-gateway.git
synced 2026-08-19 04:24:15 +00:00
25 lines
443 B
Bash
25 lines
443 B
Bash
APP_NAME=ApiGateway
|
|
APP_ENV=local
|
|
APP_KEY=
|
|
APP_DEBUG=true
|
|
APP_URL=http://localhost
|
|
APP_TIMEZONE=UTC
|
|
|
|
LOG_CHANNEL=stack
|
|
LOG_SLACK_WEBHOOK_URL=
|
|
|
|
DB_CONNECTION=mysql
|
|
DB_HOST=127.0.0.1
|
|
DB_PORT=3306
|
|
DB_DATABASE=lu-ms1-api_gateway
|
|
DB_USERNAME=
|
|
DB_PASSWORD=
|
|
|
|
CACHE_DRIVER=file
|
|
QUEUE_CONNECTION=sync
|
|
|
|
|
|
PRODUCTS_SERVICE_BASE_URI=http://localhost:8100/api
|
|
PRODUCTS_SERVICE_SECRET=
|
|
ORDERS_SERVICE_BASE_URI=http://localhost:8200/api
|
|
ORDERS_SERVICE_SECRET= |