c8e607c91c
CRM CI / build (push) Waiting to run
- Update default login email to xinmi@local.com - Update default password to 12345678 (and bcrypt hash in crm.sql) - Add example customers, products, and contracts to init SQL - Fix Docker env interpolation for VITE_API_BASE_URL - Hardcode local backend API URL in frontend .env files - Update README and docs to reflect new default credentials
18 lines
273 B
Bash
18 lines
273 B
Bash
# Project Name
|
|
PROJECT_NAME=LingXi_CRM
|
|
|
|
# Ports
|
|
WEB_PORT=11000
|
|
SERVER_PORT=11001
|
|
DB_PORT=11002
|
|
REDIS_PORT=11003
|
|
|
|
# Database
|
|
DB_NAME=crm
|
|
DB_USER=root
|
|
DB_PASSWORD=lingxi_crm_pass
|
|
DB_ROOT_PASSWORD=lingxi_crm_root_pass
|
|
|
|
# Backend config
|
|
API_BASE_URL=http://localhost:11001/api
|