First deploy in 10 minutes
End-to-end path from signup to a green deploy on dev. Assumes you have a GitHub repo and a Stripe-test card.
This page gets you from signup to a green deploy in under 10 minutes. It assumes you have:
- A GitHub repository you can connect (any language, any stack).
- A throwaway Stripe-test card if you want to try the Team trial.
- A browser open at apps.marboba.com (or your team’s assigned environment URL if you’ve been given one).
1. Sign up + create an org
- Click Start free at marboba.com.
- Sign up with Google or email + password.
- The signup flow auto-creates a default org on the Free plan. You’re already in.
If you wanted an org name first, use enterprise login instead — it routes to a custom-named org sign-up flow.
2. Create your first project
The catalog kind we’ll use is component (the rest — APIs,
resources, systems, domains — come later).
- Sidebar → Projects → + Project → Master Wizard.
- Fill in:
- Name — your repo’s short name.
- Internal code — a kebab-case slug used everywhere
(
acme-checkout,widget-fe). Becomes part of every deep link. - Platform —
web,ios,android,service,cli, etc.
- Skip the optional fields (domain, system) for now. The wizard ends with a green checkmark + a link to the project.
3. Connect GitHub
- Project page → Code tab → + Connection.
- GitHub → click Connect → the GitHub OAuth flow opens.
- Authorize the MarBoba app for the repo you want.
- Pick the repo from the dropdown. The Code tab now shows commits, PRs, and branches.
Other VCS providers: GitLab / Bitbucket / Azure DevOps all work the same way — the screen routes to the right provider’s OAuth automatically.
4. Wire CI/CD
- Settings tab → CI/CD → Create workflow.
- The AI workflow generator drafts a
.github/workflows/marboba.ymlthat builds your project + reports back to MarBoba on each run. - Review the YAML, click Commit to repo. The workflow runs on the next push.
5. Trigger a deploy
- Push a commit to the connected branch (or click Run pipeline from the Pipelines tab).
- The deployment shows up in Project → Deployments with status
running. Logs stream live. - When the workflow’s MarBoba callback hits the API, the status
flips to
successand the project’s Health Score climbs.
What’s next
- Set up SSO — if you’re inviting more than 3 teammates.
- Wire the AI Concierge — catalog-grounded chat that answers questions about your projects without leaving the app.
- Add a scorecard — turn production-readiness into a number.
- Connect the MCP server — read your MarBoba catalog inline from Cursor, Claude Code, or Copilot, and propose agent actions without leaving your AI coding tool.
See also
- Connect a GitHub repository — Authorize the MarBoba GitHub app on a repo, wire a project to it, and verify the connection by streaming a PR.