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>
18 lines
593 B
Bash
18 lines
593 B
Bash
MASKAN_CRM_ENV=development
|
|
MASKAN_CRM_MODE=suite
|
|
MASKAN_CRM_CORS_ORIGINS=https://crm-dev.example.com
|
|
MASKAN_CRM_JWT_SECRET=replace-with-a-development-secret-at-least-32-characters
|
|
|
|
DB_HOST=development-postgres.example.internal
|
|
DB_PORT=5432
|
|
DB_NAME=maskan_crm
|
|
DB_USER=maskan_crm
|
|
DB_PASSWORD=replace-with-development-database-password
|
|
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-with-development-owner-password
|
|
MASKAN_CRM_SEED_DEMO=true
|