Independent FastAPI backend for Maskan CRM. Owns contacts, organizations, leads, pipelines, activities, products, quotes, users, permissions, audit records and first-party integration credentials, with Alembic migrations against PostgreSQL. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
19 lines
620 B
Bash
19 lines
620 B
Bash
MASKAN_CRM_ENV=production
|
|
MASKAN_CRM_MODE=standalone
|
|
MASKAN_CRM_CORS_ORIGINS=https://crm.example.com
|
|
MASKAN_CRM_JWT_SECRET=replace-from-your-production-secret-manager
|
|
MASKAN_CRM_ACCESS_TOKEN_MINUTES=30
|
|
|
|
DB_HOST=production-postgres.example.internal
|
|
DB_PORT=5432
|
|
DB_NAME=maskan_crm
|
|
DB_USER=maskan_crm
|
|
DB_PASSWORD=replace-from-your-production-secret-manager
|
|
DB_SSLMODE=require
|
|
|
|
MASKAN_CRM_BOOTSTRAP_WORKSPACE=maskan
|
|
MASKAN_CRM_BOOTSTRAP_COMPANY=Maskan Technologies
|
|
MASKAN_CRM_BOOTSTRAP_ADMIN_EMAIL=owner@example.com
|
|
MASKAN_CRM_BOOTSTRAP_ADMIN_PASSWORD=replace-from-your-production-secret-manager
|
|
MASKAN_CRM_SEED_DEMO=false
|