realtimex-crm
v0.49.2
Published
RealTimeX CRM - A full-featured CRM with zero cloud costs and complete privacy.
Maintainers
Readme
RealTimeX CRM
A full-featured CRM with zero cloud costs and complete privacy. Fork of Atomic CRM with enhanced "Bring Your Own Database" configuration.
https://github.com/user-attachments/assets/0d7554b5-49ef-41c6-bcc9-a76214fc5c99
RealTimeX CRM is free and open-source.
Live Demo
Experience RealTimeX CRM immediately: realtimex-crm.vercel.app
Admin Credentials:
- Email:
[email protected] - Password:
crmdemo
[!NOTE] This demo uses an in-memory database. All changes are local to your browser session and will reset upon refreshing the page.
Features
- 📇 Organize Contacts: Keep all your contacts in one easily accessible place.
- ⏰ Create Tasks & Set Reminders: Never miss a follow-up or deadline.
- 📝 Take Notes: Capture important details and insights effortlessly.
- ✉️ Capture Emails: CC RealTimeX CRM to automatically save communications as notes.
- 📊 Manage Deals: Visualize and track your sales pipeline in a Kanban board.
- 🔄 Import & Export Data: Easily transfer contacts in and out of the system.
- 🔐 Control Access: Log in with Google, Azure, Keycloak, and Auth0.
- 📜 Track Activity History: View all interactions in aggregated activity logs.
- 🔗 Integrate via API: Connect seamlessly with other systems using our API.
- 🛠️ Customize Everything: Add custom fields, change the theme, and replace any component to fit your needs.
- 🗄️ Bring Your Own Database: Configure Supabase connection via UI or environment variables.
Quick Start
Option 1: Use the CLI (Recommended)
Create a new CRM project in seconds:
npx create-realtimex-crm@latestThe CLI will guide you through:
- Choosing a template (standalone app, RealTimeX Local App, or component)
- Configuring Supabase (optional)
- Setting up your project structure
Then:
cd my-crm
npm install
npm run devOption 2: Clone and Customize
To run this project locally, you will need:
- Node 22 LTS
- A free Supabase account (create at supabase.com)
Clone the repository:
git clone https://github.com/therealtimex/realtimex-crm.git
cd realtimex-crmInstall dependencies:
npm installStart the development server:
npm run devAccess the app at http://localhost:5173/
First Launch:
- Setup wizard appears automatically
- Choose one of:
- Connect to Supabase: Enter your project URL and API key
- Try Demo Mode: Use in-memory database (no signup required)
- If using Supabase, configure via:
- Setup wizard (recommended for users)
- OR set environment variables in
.env.development.local:VITE_SUPABASE_URL=https://xxxxx.supabase.co VITE_SUPABASE_ANON_KEY=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...
Managing Your Remote Supabase:
- Dashboard: https://supabase.com/dashboard/project/YOUR_PROJECT_ID
- Storage: View attachments in Supabase dashboard
- Database: Run migrations via Settings → Database in the app
User Documentation
Deploying to Production
Customizing RealTimeX CRM
To customize RealTimeX CRM, you will need TypeScript and React programming skills as there is no graphical user interface for customization. Here are some resources to assist you in getting started.
- Customizing the CRM
- Creating Migrations (optional)
- Using Fake Rest Data Provider for Development (optional)
- Architecture Decisions (optional)
Testing Changes
This project contains unit tests. Run them with the following command:
npm testYou can add your own unit tests powered by Vitest anywhere in the src directory. The test files should be named *.test.tsx or *.test.ts.
Development Commands
npm install # Install dependencies
npm run dev # Start development server
npm run dev:demo # Start with demo mode (no database)
npm test # Run unit tests (vitest)
npm run typecheck # Run TypeScript type checking
npm run lint # Run ESLint and Prettier checks
npm run build # Build production bundle
npm run serve # Serve production build locally
# Developer commands (remote Supabase management)
npx supabase db push # Push migrations to remote SupabaseRegistry
RealTimeX CRM components are published as a Shadcn Registry file:
- The
registry.jsonfile is automatically generated by thescripts/generate-registry.mjsscript as a pre-commit hook. - The registry is automatically published by the CI/CD pipeline
[!WARNING] If the
registry.jsonmisses some changes you made, you MUST update thescripts/generate-registry.mjsto include those changes.
CLI Templates
The create-realtimex-crm CLI provides three templates:
1. Standalone App
A complete CRM application ready to deploy:
- Full Vite + React setup
- TypeScript configuration
- Production build scripts
- Environment-based configuration
2. RealTimeX Local App
CRM integrated with RealTimeX.ai platform:
@realtimex/app-sdkintegration- Auto-scoped data by user
- Parent-child user support
- Platform authentication
- See
LOCAL_APP.mdin generated project for details
3. Component Integration
Use RealTimeX CRM as a component in your existing app:
- Install via npm
- Import and configure
- Example integration code included
NPM Package
RealTimeX CRM is available as an npm package:
npm install realtimex-crmThe package includes all source code, components, and Supabase migrations for easy integration.
License
This project is licensed under the MIT License. Original project courtesy of RealTimeX. See the LICENSE.md file for details.
Credits
This project is a fork of Atomic CRM by Marmelab, enhanced with:
- "Bring Your Own Database" UI configuration
- Simplified deployment workflows
- NPM package distribution
- RealTimeX App SDK integration support (planned)
