30 lines
741 B
Text
30 lines
741 B
Text
|
|
SECRET_KEY=django-insecure-key-placeholder-for-digihox-crm-portal
|
||
|
|
DEBUG=True
|
||
|
|
ALLOWED_HOSTS=*
|
||
|
|
|
||
|
|
# Database default (CRM Admin metadata)
|
||
|
|
CRM_DB_NAME=digihox_crm
|
||
|
|
CRM_DB_USER=postgres
|
||
|
|
CRM_DB_PASSWORD=postgres
|
||
|
|
CRM_DB_HOST=127.0.0.1
|
||
|
|
CRM_DB_PORT=5432
|
||
|
|
|
||
|
|
# Database seller_db (Seller Central DB)
|
||
|
|
SELLER_DB_NAME=seller_central
|
||
|
|
SELLER_DB_USER=postgres
|
||
|
|
SELLER_DB_PASSWORD=postgres
|
||
|
|
SELLER_DB_HOST=127.0.0.1
|
||
|
|
SELLER_DB_PORT=5432
|
||
|
|
|
||
|
|
# Database customer_db (Customer Website DB)
|
||
|
|
CUSTOMER_DB_NAME=customer_website
|
||
|
|
CUSTOMER_DB_USER=postgres
|
||
|
|
CUSTOMER_DB_PASSWORD=postgres
|
||
|
|
CUSTOMER_DB_HOST=127.0.0.1
|
||
|
|
CUSTOMER_DB_PORT=5432
|
||
|
|
|
||
|
|
# Microservices URLs
|
||
|
|
NOTIFICATION_SVC_URL=http://localhost:8003
|
||
|
|
PAYMENT_SVC_URL=http://localhost:8004
|
||
|
|
SHADOWFAX_API_KEY=shadowfax_key_mock_123
|