๐Ÿ“„ AI Resume Builder

June 16, 2026 ยท View on GitHub

Generate professional, metrics-driven, ATS-optimized resumes with AI in seconds. A production-ready, self-hostable Next.js SaaS boilerplate with multiple templates, custom typography, PDF/Word export, and public shareable links โ€” powered by the MuAPI AI engine. A free open-source alternative to Teal, Kickresume, Rezi, Resume.io, and Zety.

Tech stack: Next.js 14 (App Router) ยท Prisma ยท PostgreSQL ยท NextAuth (Google OAuth) ยท Stripe ยท Tailwind CSS ยท MuAPI any-llm Use cases: Job seekers ยท Career coaches ยท University career centers ยท Recruiting agencies ยท LinkedIn profile optimization ยท Bootcamp graduates ยท Professional rebranding ยท ATS resume optimization

Awesome Generative AI Apps

๐ŸŽจ Explore 50+ more open-source AI apps โ†’

๐ŸŒ Try the Live Engine

Hosted Demo: ai-resume-builder-five-olive.vercel.app

Experience the full premium light-mode, highly responsive interface. Sign in with Google to explore the AI Document Workspace, select customized readable font styles, adjust size elements, and test checkout billing pipelines directly from your browser.


AI Resume Builder is not just another simple template โ€” it's a production-ready, highly-optimized AI web application. Out of the box, it seamlessly manages User Authentication, Credits & Billing, Creations Persistence, and asynchronous AI resume generation using a sleek Next.js (App Router) architecture. It empowers you to build professional-grade AI document workflows with built-in mobile optimization, custom upward-opening dropdown controls, and sliding pill toggles, making it the perfect starting point for your next SaaS.

Why use AI Resume Builder?

  • Production-Ready SaaS Boilerplate โ€” Fully integrated with NextAuth Google OAuth and Stripe Checkout workflows.
  • Premium Minimalist Light UI โ€” Sleek, slate-gray layout boundaries, high contrast headings, and a professional canvas frame that feels tactile and modern.
  • Dynamic Style Customization โ€” Custom upward-opening selectors for resume layout template styles (Modern, Minimal, Creative, Simple, Compact, Professional), readable font families, and precise document sizes.
  • Self-Healing Webhook Bypass โ€” Dynamic REST handlers automatically polling upstream AI state and updating the local database dynamically when creations list is loaded, preventing offline states.
  • Tactile Sliding Pill Toggles โ€” Custom styled toggle switches for premium SaaS options, replacing standard unstyled check fields.
  • Public Share Links & Downloads โ€” Generate shareable public links to send to recruiters, and download print-ready PDFs or editable Word files.

AI Resume Builder


โœจ Core Features

  • Kinetic Document Workstation โ€” Submit customized writing instructions (tone, focus, target role) alongside structured fields (Personal Profile, Work Experience, Academic History, Personal Projects, Technical Skills) and watch AI optimize descriptions using active verbs and metrics.
  • Step-by-Step Accordion Form โ€” Extremely descriptive parameter indicators walking users step-by-step through profile details and career data inputs.
  • Premium Upward Select Dropdowns โ€” Custom absolute select dropdown overlays that open upwards (bottom-full mb-2) to avoid layout cut-offs inside sidebars, complete with overscroll-contain to isolate scroll actions.
  • Studio Creations History โ€” Persist all generated resume records in PostgreSQL. Manage history in a dedicated Creations Gallery, supporting instant edit reloading, template duplication, public sharing, and record deletion.
  • Credit Tiers & Stripe Billing โ€” Fully integrated checkout sessions with Stripe. Purchase one-time package credit tiers (Basic, Standard, Professional, Business) to support AI generations (consuming 18 credits per run).
  • Collapsible Responsive Navigation โ€” Seamless logo visibility on mobile viewports collapsing links and deployment triggers into an absolute menu overlay with backdrop glass blurs.

โšก Deployment: Vercel & Production

Deploying an instance of AI Resume Builder to the web requires minimal configuration. The architecture is engineered explicitly for Vercel serverless environments.

One-Click Deploy

Deploy with Vercel

Pro Tip: Fork this repository, and replace YOUR_GITHUB_USER in the link above, to streamline deployments for your private forks.

๐Ÿ”‘ Required Environment Variables

To successfully deploy and run, populate the following environment variables in your Vercel project settings:

ServiceVariableDescription & Source
DatabaseDATABASE_URLPostgreSQL connection string (Supabase or Neon)
DIRECT_URLDirect DB connection for Prisma migrations
NextAuth / GoogleNEXTAUTH_SECRETSecure random string generated via openssl rand -base64 32
NEXTAUTH_URLYour production domain (e.g. https://ai-resume-builder-five-olive.vercel.app)
WEBHOOK_URLThe tunnel URL or production domain for resolving MuAPI callback webhooks
GOOGLE_CLIENT_IDGet from Google Cloud Console
GOOGLE_CLIENT_SECRETGet from Google Cloud Console
Stripe BillingSTRIPE_SECRET_KEYGet from Stripe Dashboard
NEXT_PUBLIC_STRIPE_PUBLISHABLE_KEYGet from Stripe Dashboard
STRIPE_WEBHOOK_SECRETWebhook secret for resolving credit purchases
AI GeneratorMUAPIAPP_API_KEYCreate an account and get key from muapi.ai/access-keys

๐Ÿš€ Launching on Vercel: Step-by-Step

  1. Database Provisioning: Create a new Postgres database (via completely free tiers on Vercel Postgres, Supabase, or Neon). Retrieve the pooling connection string (DATABASE_URL) and direct connection string (DIRECT_URL).
  2. Project Creation: Import your GitHub fork into the Vercel dashboard.
  3. Configure Environment Variables: Copy the variables above into the Vercel project settings environment tab.
  4. Deploy: Hit "Deploy". Vercel will automatically run the build steps (npm run build).
  5. Database Push: Since Prisma does not automatically migrate via Vercel builds by default, you may want to append npx prisma db push && to your Vercel build command, or manually run it locally pointing to your production database URL.
  6. Integrations Setup:
    • Establish a Google Cloud OAuth app, enabling the callback URL: https://ai-resume-builder-five-olive.vercel.app/api/auth/callback/google
    • Setup a Stripe Webhook, pointing to https://ai-resume-builder-five-olive.vercel.app/api/webhook/stripe and selecting the checkout.session.completed event to grab your webhook signing secret.

๐Ÿ› ๏ธ Local Development

Ready to iterate locally? Setup is straightforward.

Prerequisites

  • Node.js (v18 or higher)
  • A local PostgreSQL instance or a free cloud Database URL.

Setup

# 1. Clone the repository
git clone https://github.com/SamurAIGPT/ai-resume-builder
cd ai-resume-builder

# 2. Install dependencies
npm install

# 3. Setup Environment
cp .env.example .env
# Open .env and insert your specific keys. You can use a local DB or your dev cloud DB.

# 4. Initialize Database Schema
npx prisma generate
npx prisma db push

# 5. Start the Development Server
npm run dev

The graphical console should now be heavily responsive on http://localhost:3000.


๐Ÿ—„๏ธ Database Setup (Prisma Introspection Cycle)

โš ๏ธ Database Safety Warning: This application shares a single PostgreSQL database instance on Supabase with other applications in this workspace. Follow the cycle below to synchronize models safely:

  1. Pull all existing tables: npx prisma db pull (introspects all 20+ active tables from other workspace apps)
  2. Declare relation changes: Inject the Resume model in your local schema.prisma and link it inside the User model (resumes Resume[]).
  3. Push to database: Run npx prisma db push to merge changes safely.
  4. Local Schema Cleanup: Strip away other applications' models from your local schema.prisma, leaving only Account, Session, User, VerificationToken, and Resume.
  5. Compile local client: Run npx prisma generate to build your local type-safe Prisma client.

๐Ÿ—๏ธ Technical Architecture

This application decouples visually rich UI elements from core business logic layers, emphasizing modularization.

ai-resume-builder/
โ”œโ”€โ”€ prisma/
โ”‚   โ”œโ”€โ”€ schema.prisma           # PostgreSQL schema (User, Account, Session, Resume)
โ”‚   โ””โ”€โ”€ config.ts               # Dynamic database datasource selector
โ”œโ”€โ”€ src/
โ”‚   โ”œโ”€โ”€ app/                    # Next.js App Router Pages
โ”‚   โ”‚   โ”œโ”€โ”€ api/                # Backend API Routes
โ”‚   โ”‚   โ”‚   โ”œโ”€โ”€ auth/           # NextAuth credentials handling
โ”‚   โ”‚   โ”‚   โ”œโ”€โ”€ checkout/       # Stripe checkout session builder
โ”‚   โ”‚   โ”‚   โ”œโ”€โ”€ creations/      # Creations GET (fetch/bypass sync), POST (dup), DELETE routes
โ”‚   โ”‚   โ”‚   โ”œโ”€โ”€ generation/     # Credits checking, deduction, MuAPI prediction triggers
โ”‚   โ”‚   โ”‚   โ”œโ”€โ”€ upload/         # MuAPI CDN file upload handler
โ”‚   โ”‚   โ”‚   โ””โ”€โ”€ webhook/        # Webhooks for Stripe billing and MuAPI prediction callbacks
โ”‚   โ”‚   โ”œโ”€โ”€ gallery/            # History Creations Gallery
โ”‚   โ”‚   โ”œโ”€โ”€ pricing/            # Interactive packaging checkout cards
โ”‚   โ”‚   โ”œโ”€โ”€ globals.css         # Minimal light-mode styling, scrollbars
โ”‚   โ”‚   โ””โ”€โ”€ layout.js           # Root layout config (Inter font)
โ”‚   โ”œโ”€โ”€ components/             # Reusable UI Components
โ”‚   โ”‚   โ”œโ”€โ”€ Header.js           # Sticky responsive light-mode glass navbar
โ”‚   โ”‚   โ”œโ”€โ”€ Providers.js        # NextAuth Session wrapper
โ”‚   โ”‚   โ”œโ”€โ”€ ResumeForm.js       # Accordion inputs, custom selects, toggles
โ”‚   โ”‚   โ””โ”€โ”€ ResumePreview.js    # Native print PDF and Word doc preview frame
โ”‚   โ””โ”€โ”€ lib/                    # Shared library configurations
โ”‚       โ”œโ”€โ”€ auth.js             # NextAuth prisma options configuration
โ”‚       โ”œโ”€โ”€ config.js           # Central configuration properties (MuAPI, Stripe, plans)
โ”‚       โ”œโ”€โ”€ prisma.js           # Prisma client provider singleton
โ”‚       โ”œโ”€โ”€ stripe.js           # Stripe engine instance
โ”‚       โ””โ”€โ”€ services/
โ”‚           โ”œโ”€โ”€ user.js         # Credit management and validation service
โ”‚           โ””โ”€โ”€ billing.js      # Stripe session checkout and payment parsers
โ”œโ”€โ”€ next.config.mjs             # Next Configuration
โ””โ”€โ”€ package.json

Check out other open-source SaaS templates from the same ecosystem:

TemplateDescriptionGitHub
My Podcast StudioHigh-Octane AI Voice Over & Narration SaaSgithub.com/SamurAIGPT/my-podcast
TryOn AIAI Virtual Try-On & Outfit Fitting SaaSgithub.com/SamurAIGPT/ai-tryon
AI Social Post GeneratorHigh-conversion AI social feed managergithub.com/SamurAIGPT/social-post
AI Kissing Video GeneratorPhotorealistic romance video generatorgithub.com/SamurAIGPT/ai-kissing-video-generator

๐Ÿ“„ License

MIT Licensed. Fork it, brand it, and start earning.


AI Resume Builder: A premium, minimalist light-mode, fully responsive AI resume creation workstation built for job seekers, recruiters, and professionals.