Welcome to the CreatorsHub platform repository. This monorepo houses the full-stack application code, structured into a backend API and a frontend client.
🖥️ Frontend
The user interface built with Next.js 16, React 19, and Tailwind CSS. It handles all user interactions, dashboards, and data visualization.
- Key Tech: Next.js, Tailwind CSS, Framer Motion, Lucide React.
- Docs: See
frontend/README.mdfor setup and details.
⚙️ Backend
The RESTful API server built with Node.js and Express. It manages data persistence, authentication, and business logic.
- Key Tech: Node.js, Express, MongoDB, Cloudinary.
- Docs: See
backend/README.mdfor API endpoints and configuration.
To get the entire platform running locally:
-
Clone the repository:
git clone https://github.com/onerandomdevv/creatorshub.git cd creatorshub -
Start Backend:
cd backend npm install npm run dev(The backend runs on port 5000 by default)
-
Start Frontend (in a new terminal):
cd frontend npm install npm run dev(The frontend runs on port 3000 by default)