Skip to main content

Example Projects

Learn by exploring complete example projects built with AutoDeployBase.

Full Applications

SaaS Starter

A complete SaaS application with authentication, subscriptions, and admin dashboard.

npx autodeploybase init my-saas --archetype saas

Features:

  • User authentication
  • Stripe subscriptions
  • Admin dashboard
  • User management
  • Team/organization support

View Example →

E-commerce Store

A fully-functional online store with products, cart, and checkout.

npx autodeploybase init my-store --archetype ecommerce

Features:

  • Product catalog
  • Shopping cart
  • Checkout flow
  • Order management
  • Inventory tracking

View Example →

Blog CMS

A content management system for blogs and websites.

npx autodeploybase init my-blog --archetype cms

Features:

  • Post editor
  • Media library
  • Categories & tags
  • SEO optimization
  • Comments

View Example →

Tutorials

Custom Plugin Tutorial

Build a plugin from scratch.

  • Create plugin structure
  • Add templates
  • Register components
  • Publish to npm

Start Tutorial →

Multi-Framework Plugin

Create a plugin that works across frameworks.

  • Write Mitosis components
  • Handle framework differences
  • Test on all targets

Start Tutorial →

Deployment Pipeline

Set up CI/CD for your project.

  • GitHub Actions
  • Docker builds
  • Vercel deployment
  • Database migrations

Start Tutorial →

Quick Recipes

Add Authentication

npx autodeploybase init my-app --archetype blank
npx autodeploybase add auth-jwt

Add Payments

npx autodeploybase add payments-stripe

Add Email

npx autodeploybase add email

Add File Uploads

npx autodeploybase add file-storage

Framework-Specific Examples

Next.js

npx autodeploybase init my-next-app --framework next --archetype saas

Nuxt

npx autodeploybase init my-nuxt-app --framework nuxt --archetype saas

SvelteKit

npx autodeploybase init my-svelte-app --framework sveltekit --archetype saas

API Backend (Hono)

npx autodeploybase init my-api --framework hono --archetype blank
npx autodeploybase add auth-jwt

Explore on GitHub

All examples are available in our examples repository:

github.com/autodeploybase/examples

Clone and explore:

git clone https://github.com/autodeploybase/examples.git
cd examples/saas-starter
npm install
npm run dev