https://github.com/evolutionapi/evolution-manager-v2
https://github.com/evolutionapi/evolution-manager-v2
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/evolutionapi/evolution-manager-v2
- Owner: EvolutionAPI
- License: other
- Created: 2024-07-19T19:14:12.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2025-11-07T17:21:58.000Z (7 months ago)
- Last Synced: 2025-12-01T22:24:23.475Z (6 months ago)
- Language: TypeScript
- Size: 29.1 MB
- Stars: 14
- Watchers: 0
- Forks: 37
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
- Security: SECURITY.md
Awesome Lists containing this project
README
# Evolution Manager v2

**Modern Web Interface for Evolution API Management**
[](LICENSE)
[](https://reactjs.org/)
[](https://www.typescriptlang.org/)
[](https://vitejs.dev/)
[π Demo](https://manager.evolution-api.com) β’ [π Documentation](https://doc.evolution-api.com) β’ [π¬ Community](https://evolution-api.com/discord)
## π Table of Contents
- [About](#about)
- [Features](#features)
- [Screenshots](#screenshots)
- [Quick Start](#quick-start)
- [Installation](#installation)
- [Configuration](#configuration)
- [Development](#development)
- [Docker](#docker)
- [API Integration](#api-integration)
- [Internationalization](#internationalization)
- [Contributing](#contributing)
- [License](#license)
- [Support](#support)
## π About
Evolution Manager v2 is a modern, responsive web interface built with React and TypeScript for managing [Evolution API](https://github.com/EvolutionAPI/evolution-api) instances. It provides a comprehensive dashboard for WhatsApp API management, chatbot integrations, and real-time monitoring.
### Key Highlights
- π¨ **Modern UI/UX** - Built with Radix UI and Tailwind CSS
- π **Multi-language** - Support for PT-BR, EN-US, ES-ES, FR-FR
- π± **Responsive Design** - Works perfectly on desktop and mobile
- β‘ **Real-time Updates** - WebSocket integration for live data
- π§ **Easy Configuration** - Environment-based configuration
- π³ **Docker Ready** - Containerized deployment
## β¨ Features
### π **Dashboard & Monitoring**
- Instance overview and status monitoring
- Real-time connection status
- Performance metrics and analytics
- Multi-instance management
### π¬ **Chat Management**
- WhatsApp chat interface
- Message history and search
- Media file handling
- Contact management
### π€ **Chatbot Integrations**
- **OpenAI** - GPT-powered conversations
- **Dify** - AI workflow automation
- **Typebot** - Visual flow builder
- **Chatwoot** - Customer support platform
- **Flowise** - Low-code AI apps
- **N8N** - Workflow automation
- **Evolution Bot** - Built-in chatbot
### π **Event Integrations**
- **Webhook** - HTTP event delivery
- **WebSocket** - Real-time events
- **RabbitMQ** - Message queue integration
- **SQS** - Amazon Simple Queue Service
- **Apache Kafka** - Event streaming platform
### βοΈ **Configuration Management**
- Instance settings and behavior
- Proxy configuration
- Authentication management
- Environment variables
### π¨ **User Experience**
- Dark/Light theme support
- Multi-language interface
- Responsive design
- Keyboard shortcuts
- Accessibility features
## πΈ Screenshots
Click to view screenshots
### Dashboard

### Chat Interface

### Chatbot Configuration

### Settings

## π Quick Start
### Prerequisites
- Node.js 18+ and npm
- Evolution API instance running
- Modern web browser
### Installation
```bash
# Clone the repository
git clone https://github.com/EvolutionAPI/evolution-manager-v2.git
cd evolution-manager-v2
# Install dependencies
npm install
# Start development server
npm run dev
```
Open [http://localhost:5173](http://localhost:5173) in your browser.
## π¦ Installation
### Method 1: NPM (Recommended)
```bash
# Install globally
npm install -g evolution-manager
# Or run directly
npx evolution-manager
```
### Method 2: Docker
```bash
# Pull and run
docker run -p 3000:80 evolutionapi/evolution-manager:latest
# Or use docker-compose
docker-compose up -d
```
### Method 3: Build from Source
```bash
# Clone repository
git clone https://github.com/EvolutionAPI/evolution-manager-v2.git
cd evolution-manager-v2
# Install dependencies
npm install
# Build for production
npm run build
# Serve built files
npm run preview
```
## βοΈ Configuration
### Environment Variables
Create a `.env` file in the root directory:
```env
# Evolution API Configuration
VITE_EVOLUTION_API_URL=http://localhost:8080
VITE_EVOLUTION_API_KEY=your-api-key
# Application Configuration
VITE_APP_NAME="Evolution Manager"
VITE_APP_VERSION="2.0.0"
# Optional: Custom Branding
VITE_LOGO_URL="/assets/images/custom-logo.png"
VITE_FAVICON_URL="/assets/images/custom-favicon.ico"
# Optional: Analytics
VITE_GOOGLE_ANALYTICS_ID=GA_MEASUREMENT_ID
```
### API Connection
The manager connects to your Evolution API instance. Configure the connection in the login screen or via environment variables.
### Customization
- **Themes**: Modify `src/index.css` for custom styling
- **Languages**: Add translations in `src/translate/languages/`
- **Components**: Extend UI components in `src/components/ui/`
## π οΈ Development
### Development Setup
```bash
# Install dependencies
npm install
# Start development server with hot reload
npm run dev
# Run linting
npm run lint
# Type checking
npm run type-check
```
### Project Structure
```
src/
βββ components/ # Reusable UI components
β βββ ui/ # Base UI components (Radix + Tailwind)
β βββ providers/ # Context providers
βββ pages/ # Application pages/routes
βββ lib/ # Utilities and API clients
β βββ queries/ # React Query hooks
β βββ utils.ts # Helper functions
βββ contexts/ # React contexts
βββ translate/ # Internationalization
βββ types/ # TypeScript type definitions
βββ services/ # External service integrations
```
### Tech Stack
- **Frontend**: React 18, TypeScript, Vite
- **UI Library**: Radix UI, Tailwind CSS
- **State Management**: React Query, Context API
- **Routing**: React Router DOM
- **Forms**: React Hook Form + Zod
- **Icons**: Lucide React
- **Charts**: Recharts
- **Real-time**: Socket.io Client
## π³ Docker
### Using Docker Compose
```yaml
version: '3.8'
services:
evolution-manager:
image: evolutionapi/evolution-manager:latest
ports:
- "3000:80"
environment:
- VITE_EVOLUTION_API_URL=http://evolution-api:8080
depends_on:
- evolution-api
```
### Building Custom Image
```bash
# Build image
docker build -t my-evolution-manager .
# Run container
docker run -p 3000:80 my-evolution-manager
```
## π API Integration
### Connecting to Evolution API
1. **Login Screen**: Enter your Evolution API URL and credentials
2. **Environment**: Set `VITE_EVOLUTION_API_URL` and `VITE_EVOLUTION_API_KEY`
3. **Runtime**: Configure via the settings page
### API Endpoints
The manager uses the following Evolution API endpoints:
- `GET /instance` - List instances
- `POST /instance` - Create instance
- `GET /instance/:name` - Get instance details
- `POST /message/sendText` - Send messages
- `GET /chat` - List chats
- And many more...
### Authentication
Supports multiple authentication methods:
- API Key authentication
- JWT tokens
- Instance-specific tokens
## π Internationalization
### Supported Languages
- π§π· **Portuguese (Brazil)** - `pt-BR`
- πΊπΈ **English (US)** - `en-US`
- πͺπΈ **Spanish** - `es-ES`
- π«π· **French** - `fr-FR`
### Adding New Languages
1. Create translation file in `src/translate/languages/`
2. Add language option in `src/components/language-toggle.tsx`
3. Update `src/translate/i18n.ts`
Example translation file structure:
```json
{
"dashboard": {
"title": "Dashboard",
"instances": "Instances"
},
"chat": {
"send": "Send",
"message": "Message"
}
}
```
## π€ Contributing
We welcome contributions! Please see our [Contributing Guidelines](CONTRIBUTING.md) for details.
### Development Process
1. Fork the repository
2. Create a feature branch: `git checkout -b feature/amazing-feature`
3. Make your changes
4. Run tests: `npm run test`
5. Commit changes: `npm run commit`
6. Push to branch: `git push origin feature/amazing-feature`
7. Open a Pull Request
### Code Style
- Use TypeScript for all new code
- Follow the existing code style
- Run `npm run lint` before committing
- Write meaningful commit messages
### Reporting Issues
Please use our [Issue Templates](.github/ISSUE_TEMPLATE/) when reporting bugs or requesting features.
## π License
This project is licensed under the Apache License 2.0 with additional conditions - see the [LICENSE](LICENSE) file for details.
### Commercial Usage
Evolution Manager can be used commercially, but please review the license conditions regarding:
- Logo and copyright information
- Usage notification requirements
For commercial licensing inquiries, contact: contato@evolution-api.com
## π Support
### Community Support
- π¬ **Discord**: [Join our community](https://evolution-api.com/discord)
- π **Documentation**: [Official docs](https://doc.evolution-api.com)
- π **Issues**: [GitHub Issues](https://github.com/EvolutionAPI/evolution-manager-v2/issues)
### Professional Support
- π§ **Email**: contato@evolution-api.com
- π **Website**: [evolution-api.com](https://evolution-api.com)
- πΌ **Enterprise**: Custom solutions available
### FAQ
How do I connect to my Evolution API instance?
Use the login screen to enter your API URL and credentials, or set the `VITE_EVOLUTION_API_URL` environment variable.
Can I customize the interface?
Yes! You can modify themes, add languages, and customize components. See the [Configuration](#configuration) section.
Is this compatible with Evolution API v1?
Evolution Manager v2 is designed for Evolution API v2+. For v1 compatibility, use Evolution Manager v1.
---
**Made with β€οΈ by the Evolution API Team**
[β Star us on GitHub](https://github.com/EvolutionAPI/evolution-manager-v2) β’ [π Report Issues](https://github.com/EvolutionAPI/evolution-manager-v2/issues) β’ [π¬ Join Discord](https://evolution-api.com/discord)