# AiToEarn
**Repository Path**: muran_learn_admin/AiToEarn
## Basic Information
- **Project Name**: AiToEarn
- **Description**: No description available
- **Primary Language**: Unknown
- **License**: MIT
- **Default Branch**: main
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 1
- **Created**: 2026-03-11
- **Last Updated**: 2026-03-22
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
# [Aitoearn: The Best Open-Source AI Agent for Content Marketing](https://aitoearn.ai)


[](https://nodejs.org/about/releases)
English | [简体中文](README_CN.md)
**Create · Publish · Engage · Monetize — all in one platform.**
AiToEarn helps creators, brands, and businesses build, distribute, and monetize content with **AI-powered automation** across the world’s most popular platforms.
Supported Channels:
Douyin, Xiaohongshu (Rednote), WeChat Channels, Kuaishou, Bilibili, WeChat Official Accounts,
TikTok, YouTube, Facebook, Instagram, Threads, Twitter (X), Pinterest, LinkedIn
## 🎥 Demo Video
[](https://www.youtube.com/watch?v=5041jEKaiU8)
## What's new:
* 2025.02.07: [1.8.0 version](https://www.aitoearn.ai/), we introduced support for offline business scenarios, covering restaurants, retail stores, hotels and guesthouses, beauty and hair salons, gyms, and other types of physical businesses. This feature transforms offline promotional activities into executable online distribution tasks. Through content publishing and user participation mechanisms, it helps businesses gain more online exposure and in-store traffic.
* 2025.01.06 : [1.5.3 version](https://www.aitoearn.ai/en), deal with lots of issue
* 2025.12.15 : "All In Agent" arrives! We've introduced a super AI agent that can automatically generate and publish content, and help you operate AiToEarn. [v1.4.3](https://github.com/yikart/AiToEarn/releases/tag/v1.4.3)
* 2025.11.28 : Support automatic updates within the application. Add a large number of AI functions to the creation interface, such as abbreviation, expansion, image creation, video creation, tag generation, etc., supporting Nano Banana Pro.[v1.4.0](https://github.com/yikart/AiToEarn/releases/tag/v1.4.0)
* 2025.11.12 : The first open-source, fully usable version,[v1.3.2](https://github.com/yikart/AiToEarn/releases/tag/v1.3.2)
Table of Contents
1. [Quick Start for Creators (Apps & Web)](#quick-start-for-creators)
3. [Key Features](#key-features)
4. [Quick Start for Developers (Docker, Recommended)](#quick-start-for-developers-docker-recommended)
5. [MCP Service](#mcp-service)
7. [Contact](#contact)
9. [FAQ](#faq)
10. [Recommended](#recommended)
### 7. (Coming Soon) AI Content Creation — End-to-End Assistant
* **AI Copywriting**: Auto-generate titles, captions & descriptions.
* **AI Commenting**: Engage proactively, attract traffic.
* **Image & Card Generator**: Speed up content workflows.
* **Supported AI Video Models**: Seedance, Kling, Hailuo, Veo, Medjourney, Sora, Pika, Runway.
* **Supported AI Image Models**: GPT, Flux.
* **Next**: Tag generator, smart DMs, video editing, AI avatars, translation for global distribution.
### 8. (Coming Soon) Content Marketplace — Trade & Monetize
* **Creators**: Sell your content directly, find buyers fast.
* **Brands**: Purchase ready-made, high-quality content.
* **AI-Powered Growth**:
**Let’s use AI to earn. Let’s earn money together!**
## Quick Start for Developers (Docker, Recommended)
This is the easiest way to run AiToEarn. It will start the **frontend, backend, MongoDB and Redis** with one command.
You **do NOT** need to install MongoDB or Redis on your machine manually.
```bash
git clone https://github.com/yikart/AiToEarn.git
cd AiToEarn
cp env.example .env
docker compose up -d
````
### 🌐 Access Applications
After Docker starts successfully, you can access services at:
| Service | URL | Description |
| ----------------------- | ---------------------------------------------- | ----------------------------------------------------------- |
| **Web Frontend** | [http://localhost:3000](http://localhost:3000) | Web user interface |
| **Main Backend API** | [http://localhost:3002](http://localhost:3002) | AiToEarn main server API |
| **Channel Service API** | [http://localhost:7001](http://localhost:7001) | AiToEarn channel service API |
| **MongoDB** | localhost:27017 | MongoDB (inside Docker, uses username/password from `.env`) |
| **Redis** | localhost:6379 | Redis (inside Docker, uses password from `.env`) |
> ℹ️ MongoDB & Redis are both started by `docker compose`.
> You only need to configure their passwords in `.env`; no extra local installation is required.
### 🧩 Advanced Configuration (.env)
Edit the `.env` file to set secure values and customize your deployment:
```bash
# Required security configurations
MONGODB_PASSWORD=your-secure-mongodb-password
REDIS_PASSWORD=your-secure-redis-password
JWT_SECRET=your-jwt-secret-key
INTERNAL_TOKEN=your-internal-token
# If external access is needed, set your public API/domain
NEXT_PUBLIC_API_URL=http://your-domain.com:3002/api
APP_DOMAIN=your-domain.com
```
> ✅ In production, please use strong, random passwords and secrets.