Files
isaaccladandCursor 532cbb54b2
Deploy Ladill Woo Manager / deploy (push) Successful in 1m11s
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:50 +00:00

48 lines
1.1 KiB
Bash

APP_NAME="Ladill Woo Manager"
APP_ENV=local
APP_KEY=
APP_DEBUG=true
APP_URL=http://localhost:8088
PLATFORM_URL=https://ladill.com
PLATFORM_DOMAIN=ladill.com
AUTH_DOMAIN=auth.ladill.com
ACCOUNT_DOMAIN=account.ladill.com
WOO_MANAGER_DOMAIN=woo.ladill.com
DB_CONNECTION=sqlite
DB_DATABASE=database/database.sqlite
SESSION_DRIVER=array
CACHE_STORE=array
QUEUE_CONNECTION=sync
LADILL_SSO_CLIENT_ID=
LADILL_SSO_CLIENT_SECRET=
BILLING_API_URL=https://ladill.com/api/billing
BILLING_API_KEY_WOO=
IDENTITY_API_URL=https://ladill.com/api
IDENTITY_API_KEY_WOO=
# Suite demo accounts (sales walkthroughs) — reset Woo Manager data on each SSO login
DEMO_ACCOUNTS_ENABLED=false
DEMO_RESET_ON_LOGIN=true
# SMTP — production deploy copies transport vars from /var/www/ladill.com/shared/.env
MAIL_MAILER=log
MAIL_SCHEME=null
MAIL_ENCRYPTION=null
MAIL_HOST=127.0.0.1
MAIL_PORT=2525
MAIL_USERNAME=null
MAIL_PASSWORD=null
MAIL_FROM_ADDRESS="noreply@ladill.com"
MAIL_FROM_NAME="${APP_NAME}"
WOO_MANAGER_PLUGIN_CLIENT_ID=
WOO_MANAGER_PLUGIN_CLIENT_SECRET=
VITE_APP_NAME="${APP_NAME}"