|
| 1 | +# Manus ERP |
| 2 | + |
| 3 | +A unified enterprise system that consolidates operations, analytics, and communications into one intelligent workspace. It streamlines financial oversight, automates data handling, and provides real-time insights through dynamic reports and visual dashboards. |
| 4 | + |
| 5 | +## Features |
| 6 | + |
| 7 | +### Core Modules |
| 8 | + |
| 9 | +- **Dashboard & Analytics** - Real-time KPIs, financial overview, and quick actions |
| 10 | +- **Task Management** - Complete to-do list with priority tracking, due dates, and status management |
| 11 | +- **Financial Transactions** - Income/expense tracking with automated discrepancy detection |
| 12 | +- **Reports & Analytics** - AI-powered report generation for financial and business insights |
| 13 | +- **Document Management** - OCR scanning, text recognition, and intelligent document parsing |
| 14 | +- **Support Tickets** - Comprehensive issue tracking with priority and status management |
| 15 | +- **Notifications** - Custom notification system with real-time updates and unread badges |
| 16 | + |
| 17 | +### Advanced Features |
| 18 | + |
| 19 | +- **AI-Powered OCR** - Extract text from images and analyze documents |
| 20 | +- **Discrepancy Detection** - Automated accounting anomaly detection using AI |
| 21 | +- **Report Generation** - Generate financial and analytics reports with AI insights |
| 22 | +- **Data Import/Export** - Support for CSV, Excel, JSON, and XML formats |
| 23 | +- **Cloud Integrations** - Ready for OneDrive, Box, Email, and HubSpot connectors |
| 24 | +- **API & MCP** - RESTful API with Model Context Protocol integration |
| 25 | + |
| 26 | +## Tech Stack |
| 27 | + |
| 28 | +- **Frontend**: React 19, TypeScript, Tailwind CSS 4, shadcn/ui |
| 29 | +- **Backend**: Node.js, Express 4, tRPC 11 |
| 30 | +- **Database**: MySQL/TiDB with Drizzle ORM |
| 31 | +- **Authentication**: Manus OAuth |
| 32 | +- **AI Integration**: Built-in LLM for OCR, analysis, and report generation |
| 33 | + |
| 34 | +## Getting Started |
| 35 | + |
| 36 | +### Prerequisites |
| 37 | + |
| 38 | +- Node.js 22+ |
| 39 | +- pnpm package manager |
| 40 | +- MySQL/TiDB database |
| 41 | + |
| 42 | +### Installation |
| 43 | + |
| 44 | +```bash |
| 45 | +# Clone the repository |
| 46 | +git clone https://github.com/FirstCastSolutions423/Manus-ERP.git |
| 47 | +cd Manus-ERP |
| 48 | + |
| 49 | +# Install dependencies |
| 50 | +pnpm install |
| 51 | + |
| 52 | +# Run database migrations |
| 53 | +pnpm db:push |
| 54 | + |
| 55 | +# Start development server |
| 56 | +pnpm dev |
| 57 | +``` |
| 58 | + |
| 59 | +## Project Structure |
| 60 | + |
| 61 | +``` |
| 62 | +├── client/ |
| 63 | +│ ├── src/ |
| 64 | +│ │ ├── components/ # Reusable UI components |
| 65 | +│ │ ├── pages/ # Page-level components |
| 66 | +│ │ ├── lib/ # Utilities and tRPC client |
| 67 | +│ │ └── App.tsx # Routes and layout |
| 68 | +├── server/ |
| 69 | +│ ├── db.ts # Database helpers |
| 70 | +│ ├── routers.ts # tRPC procedures |
| 71 | +│ ├── ocr.ts # OCR and AI analysis |
| 72 | +│ └── reportGenerator.ts # Report generation |
| 73 | +├── drizzle/ |
| 74 | +│ └── schema.ts # Database schema |
| 75 | +└── shared/ # Shared types and constants |
| 76 | +``` |
| 77 | + |
| 78 | +## Key Features Explained |
| 79 | + |
| 80 | +### Notification System |
| 81 | + |
| 82 | +The custom notification system includes: |
| 83 | +- Database-backed notification storage |
| 84 | +- Real-time unread count badge |
| 85 | +- Notification center dropdown |
| 86 | +- Mark as read/unread functionality |
| 87 | +- Custom notification creation |
| 88 | +- Category-based organization |
| 89 | + |
| 90 | +### OCR & Document Processing |
| 91 | + |
| 92 | +- Extract text from images using vision-capable AI |
| 93 | +- Analyze documents and extract structured metadata |
| 94 | +- Support for various document types |
| 95 | +- Automatic text recognition and parsing |
| 96 | + |
| 97 | +### Financial Discrepancy Detection |
| 98 | + |
| 99 | +- AI-powered transaction analysis |
| 100 | +- Automatic flagging of unusual patterns |
| 101 | +- Severity classification (low, medium, high) |
| 102 | +- Detailed discrepancy explanations |
| 103 | + |
| 104 | +### Report Generation |
| 105 | + |
| 106 | +- Financial reports with income/expense analysis |
| 107 | +- Analytics reports with KPIs and trends |
| 108 | +- Custom data analysis reports |
| 109 | +- AI-generated insights and recommendations |
| 110 | + |
| 111 | +## API Documentation |
| 112 | + |
| 113 | +The application uses tRPC for type-safe API calls. Key routers include: |
| 114 | + |
| 115 | +- `auth` - Authentication and user management |
| 116 | +- `dashboard` - Dashboard statistics and widgets |
| 117 | +- `tasks` - Task CRUD operations |
| 118 | +- `transactions` - Financial transaction management |
| 119 | +- `reports` - Report generation and retrieval |
| 120 | +- `documents` - Document management with OCR |
| 121 | +- `tickets` - Support ticket system |
| 122 | +- `notifications` - Notification management |
| 123 | +- `integrations` - External service integrations |
| 124 | + |
| 125 | +## Development |
| 126 | + |
| 127 | +```bash |
| 128 | +# Run development server |
| 129 | +pnpm dev |
| 130 | + |
| 131 | +# Run database migrations |
| 132 | +pnpm db:push |
| 133 | + |
| 134 | +# Type checking |
| 135 | +pnpm type-check |
| 136 | + |
| 137 | +# Build for production |
| 138 | +pnpm build |
| 139 | +``` |
| 140 | + |
| 141 | +## License |
| 142 | + |
| 143 | +MIT License - see LICENSE file for details |
| 144 | + |
| 145 | +## Support |
| 146 | + |
| 147 | +For issues and questions, please use the GitHub issue tracker or contact support. |
| 148 | + |
| 149 | +--- |
| 150 | + |
| 151 | +Built with ❤️ using Manus Platform |
0 commit comments