All generated code belongs to you. Learn about exporting to GitHub, managing versions with Git, rolling back changes, and ensuring long-term ownership of the codebase.
Meku is a code-first platform. Every project you generate is production-ready React + Tailwind code that you fully own. This section explains how ownership works, how to export projects, and how to manage versions with GitHub or local workflows.
All generated code belongs to you. Meku does not lock the projects inside the platform.
Code ownership means you are free to maintain, extend, and distribute the projects without restrictions.
Meku supports multiple export methods:
Example Workflow:
# Clone exported repo from GitHub
git clone https://github.com/username/my-meku-project.git
cd my-meku-project
# Install dependencies
npm install
# Run locally
npm run dev
Version control enables you to track changes, roll back, and collaborate effectively.
git init
git add .
git commit -m "Initial commit from Meku"
git remote add origin https://github.com/username/my-meku-project.git
git branch -M main
git push -u origin main
Note: Use restore if an iteration breaks layout or logic.
Follow these practices to maintain long-term project stability.
These habits make AI-assisted development reliable and team-friendly.