mirror of
https://github.com/x1xhlol/system-prompts-and-models-of-ai-tools.git
synced 2026-06-17 23:09:35 +00:00
- Rename all SalesMatic references to Dealix (ديل اي اكس) across frontend, backend, configs, and SVG logos - Add complete automated affiliate recruitment system with: - Job posting templates (Arabic/English) with ad variations for social media, LinkedIn, job boards - Full onboarding package: welcome guide, company profile, step-by-step guide, FAQ (60+ Q&A), targets & earnings - Sales scripts: phone calls, WhatsApp, in-person, email templates, objection handling (15+), closing techniques - Targeting guides: social media, AI tools, Google, LinkedIn, local business, referral strategies - Legal agreements: freelance contract, employment offer (10+ deals/month auto-hire), commission structure - AI chatbot for affiliates: config, knowledge base, conversation flows - Add professional sector presentations for 10 industries (healthcare, real estate, restaurants, retail, education, beauty, automotive, legal, construction, e-commerce) - Add Gold Guarantee system (30-day full refund) with terms and conditions - Add AI Sales Agents system: lead generation, WhatsApp/voice/email outreach, lead scoring, auto-booking - Add backend: Affiliate & AI Conversation models, API endpoints, Celery worker tasks - Update landing page with Gold Guarantee, Affiliate CTA, and AI Agents sections https://claude.ai/code/session_01KnJgK7RwyeCvRZTRThHtfU
43 lines
868 B
Plaintext
43 lines
868 B
Plaintext
# Database
|
|
DB_NAME=salesflow
|
|
DB_USER=salesflow
|
|
DB_PASSWORD=change_me_in_production
|
|
DATABASE_URL=postgresql+asyncpg://salesflow:change_me_in_production@db:5432/salesflow
|
|
|
|
# Redis
|
|
REDIS_URL=redis://redis:6379/0
|
|
|
|
# Security
|
|
SECRET_KEY=change-this-to-a-random-secret-key-in-production
|
|
ACCESS_TOKEN_EXPIRE_MINUTES=30
|
|
REFRESH_TOKEN_EXPIRE_DAYS=7
|
|
|
|
# API
|
|
API_URL=http://localhost:8000
|
|
FRONTEND_URL=http://localhost:3000
|
|
|
|
# WhatsApp Business API
|
|
WHATSAPP_API_TOKEN=
|
|
WHATSAPP_PHONE_NUMBER_ID=
|
|
WHATSAPP_BUSINESS_ACCOUNT_ID=
|
|
WHATSAPP_VERIFY_TOKEN=
|
|
|
|
# Email (SendGrid or SMTP)
|
|
EMAIL_PROVIDER=smtp
|
|
SMTP_HOST=smtp.gmail.com
|
|
SMTP_PORT=587
|
|
SMTP_USER=
|
|
SMTP_PASSWORD=
|
|
SENDGRID_API_KEY=
|
|
|
|
# SMS (Unifonic - Saudi)
|
|
UNIFONIC_APP_SID=
|
|
UNIFONIC_SENDER_ID=Dealix
|
|
|
|
# App Settings
|
|
APP_NAME=Dealix
|
|
APP_NAME_AR=ديل اي اكس
|
|
DEFAULT_TIMEZONE=Asia/Riyadh
|
|
DEFAULT_CURRENCY=SAR
|
|
DEFAULT_LOCALE=ar
|