Files
isaaccladandCursor 4d49336f96
Deploy Ladill POS / deploy (push) Successful in 1m34s
Reseed demo tenants after each SSO login.
Demo Free/Pro/Enterprise accounts wipe and reload sample data on
authorization-code SSO callbacks so every sales walkthrough starts clean.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-17 11:20:18 +00:00

65 lines
1.3 KiB
Bash

APP_NAME="Ladill POS"
APP_ENV=production
APP_KEY=
APP_DEBUG=false
APP_URL=https://pos.ladill.com
PLATFORM_URL=https://ladill.com
PLATFORM_DOMAIN=ladill.com
AUTH_DOMAIN=auth.ladill.com
ACCOUNT_DOMAIN=account.ladill.com
POS_DOMAIN=pos.ladill.com
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=ladill_pos
DB_USERNAME=ladill_pos
DB_PASSWORD=
REDIS_CLIENT=phpredis
REDIS_HOST=127.0.0.1
REDIS_PASSWORD=null
REDIS_PORT=6379
PLATFORM_DB_HOST=127.0.0.1
PLATFORM_DB_PORT=3306
PLATFORM_DB_DATABASE=ladilldb
PLATFORM_DB_USERNAME=ladill_pos
PLATFORM_DB_PASSWORD=
SESSION_DRIVER=redis
# Idle web session length in minutes (1440 = 24 hours of inactivity).
SESSION_LIFETIME=1440
SESSION_DOMAIN=.ladill.com
LADILL_SSO_CLIENT_ID=
LADILL_SSO_CLIENT_SECRET=
BILLING_API_URL=https://ladill.com/api/billing
BILLING_API_KEY_POS=
PAY_API_URL=https://ladill.com/api/pay
PAY_API_KEY_POS=
IDENTITY_API_URL=https://ladill.com/api
IDENTITY_API_KEY_POS=
POS_DEFAULT_CURRENCY=GHS
POS_MERCHANT_IMPORT_ENABLED=true
CRM_API_URL=https://crm.ladill.com/api
CRM_API_KEY_POS=
MERCHANT_DB_HOST=127.0.0.1
MERCHANT_DB_PORT=3306
MERCHANT_DB_DATABASE=ladill_merchant
MERCHANT_DB_USERNAME=ladill_pos
MERCHANT_DB_PASSWORD=
# Suite demo accounts (sales walkthroughs) — reset POS data on each SSO login
DEMO_ACCOUNTS_ENABLED=false
DEMO_RESET_ON_LOGIN=true
VITE_APP_NAME="${APP_NAME}"