Transform your agency's support operations with intelligent automation, powered by Atlas AI
DeskFlow is a powerful customer support platform purpose-built for agenciesβespecially those on GoHighLevel (GHL). It enables agencies to offer white-labeled support services to their clients, complete with RAG-powered AI assistance from Atlas, our intelligent assistant.
DeskFlow is a fork of DeskFlows, the open-source customer engagement platform, enhanced with agency-specific features and deep GHL Marketplace integration.
- GHL Agencies wanting to offer branded support tools to clients
- SaaS Companies needing white-label customer support
- Managed Service Providers providing help desk solutions
- Any business wanting AI-powered support automation
- Full branding customization at platform and per-account levels
- Custom logos, colors, and CSS per agency/client
- Subdomain and custom domain support
- Branded email templates
- RAG-powered responses from your knowledge base
- Document ingestion (URLs, PDFs, text files)
- Co-pilot mode for agent assistance
- Automatic ticket resolution
- Customizable personality and tone per account
- Usage metering for billing
- Email integration
- Website live chat widget
- API integrations
- Unified conversation view
- Team collaboration tools
- Self-service help center
- AI-powered search
- Article categories and organization
- Public and private articles
- Customizable branding
- OAuth authentication (SSO from GHL)
- Subscription billing ($29-$199/mo tiers)
- Usage-based AI metering
- Agency rebilling support
- Webhook receivers
- Conversation metrics
- Agent performance
- Response times
- AI usage tracking
- Customer satisfaction scores
Coming soon β Screenshots of the dashboard, widget, and Atlas AI in action
| Dashboard | Chat Widget | Atlas AI |
|---|---|---|
![]() |
![]() |
![]() |
| Requirement | Version |
|---|---|
| Ruby | 3.2+ |
| Node.js | 24+ |
| PostgreSQL | 15+ (with pgvector extension) |
| Redis | 7+ |
| Docker | Latest (optional) |
# Clone the repository
git clone https://github.com/loydhale/deskflows.git deskflow
cd deskflow
# Copy environment file
cp .env.example .env
# Start with Docker Compose
docker-compose up -d
# Access at http://localhost:3000# Clone the repository
git clone https://github.com/loydhale/deskflows.git deskflow
cd deskflow
# Install Ruby dependencies
bundle install
# Install JavaScript dependencies
pnpm install
# Setup environment
cp .env.example .env
# Edit .env with your database credentials
# Setup database
rails db:prepare
# Start development server
pnpm run dev
# Access at http://localhost:3000- Navigate to
http://localhost:3000 - Create your super admin account
- Set up your first inbox (chat widget, email, or API)
- Configure Atlas AI with your knowledge base
- Customize branding in Settings
Create a .env file in the root directory:
# Database
POSTGRES_HOST=localhost
POSTGRES_PORT=5432
POSTGRES_DATABASE=deskflow_production
POSTGRES_USERNAME=deskflow
POSTGRES_PASSWORD=your_secure_password
# Redis
REDIS_URL=redis://localhost:6379
# Application
SECRET_KEY_BASE=your_secret_key_here
FRONTEND_URL=https://your-domain.com
DEFAULT_LOCALE=en
# Email (SMTP)
SMTP_ADDRESS=smtp.your-provider.com
SMTP_PORT=587
SMTP_USERNAME=your_email@domain.com
SMTP_PASSWORD=your_smtp_password
MAILER_SENDER_EMAIL=support@your-domain.com
# AI (Atlas)
OPENAI_API_KEY=sk-your-openai-key
ATLAS_ENABLED=true
# GHL Integration (Optional)
GHL_CLIENT_ID=your_ghl_client_id
GHL_CLIENT_SECRET=your_ghl_client_secret
GHL_MARKETPLACE_URL=https://marketplace.gohighlevel.comAtlas can be configured per-account or globally:
| Setting | Description | Default |
|---|---|---|
ATLAS_ENABLED |
Enable AI features | true |
ATLAS_MODEL |
OpenAI model to use | gpt-4o |
ATLAS_TEMPERATURE |
Response creativity (0-1) | 0.7 |
ATLAS_MAX_TOKENS |
Max response length | 500 |
Customize your deployment:
- Platform-level: Replace assets in
/publicand modify styles in/app/javascript - Per-account: Use the Admin β Settings β Branding panel
deskflow/
βββ app/ # Rails application
β βββ controllers/ # API & web controllers
β βββ javascript/ # Vue.js frontend
β β βββ dashboard/ # Agent dashboard SPA
β β βββ widget/ # Embeddable chat widget
β β βββ portal/ # Knowledge base portal
β βββ models/ # ActiveRecord models
β βββ services/ # Business logic
β βββ views/ # Email templates, etc.
βββ config/ # Rails configuration
βββ db/ # Database migrations
βββ docker/ # Docker configuration
βββ enterprise/ # Enterprise features (Atlas AI)
βββ lib/ # Shared libraries
βββ public/ # Static assets (logos, etc.)
βββ spec/ # RSpec test suite
# All tests
bundle exec rspec
# Specific test file
bundle exec rspec spec/models/user_spec.rb
# JavaScript tests
pnpm test# Ruby linting
bundle exec rubocop
# JavaScript linting
pnpm lintrails db:migrate # Run pending migrations
rails db:rollback # Rollback last migration
rails db:seed # Seed development data- Set strong
SECRET_KEY_BASE - Configure SMTP for emails
- Set up SSL certificates
- Configure Redis for production
- Set up background job workers (Sidekiq)
- Configure CDN for assets (optional)
- Set up monitoring and logging
docker-compose -f docker-compose.production.yml up -d- Deploy to Railway (coming soon)
- Deploy to Render (coming soon)
- Deploy to AWS (coming soon)
DeskFlow is built on DeskFlows, licensed under the MIT License.
MIT License
Copyright (c) 2017-2024 DeskFlows Inc.
Copyright (c) 2025 GrowLocals.ai (DeskFlow modifications)
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
DeskFlow is proudly built on DeskFlows, the excellent open-source customer engagement platform. We extend our sincere gratitude to the DeskFlows team and all its contributors for creating such a solid foundation.
Key upstream features we build upon:
- Omni-channel inbox architecture
- Vue.js dashboard and widget
- Rails API backend
- Enterprise Captain AI (now Atlas)
We welcome contributions! Please see our Contributing Guide for details.
- Fork the repository
- Create your feature branch (
git checkout -b feature/amazing-feature) - Commit your changes (
git commit -m 'Add amazing feature') - Push to the branch (
git push origin feature/amazing-feature) - Open a Pull Request
- Documentation: [Coming Soon]
- Issues: GitHub Issues
- Email: support@growlocals.ai
Built with β€οΈ by GrowLocals.ai
Powered by DeskFlows


