We strongly advise members not to build dummy projects. Only build projects for someone else that solves a real problem. When recruiters and hiring managers are looking at your portfolio, they’re looking for real projects that you’ve built for real people solving real problems.

Repo: https://github.com/ObaidUr-Rahmaan/titan

Pre-requisites

  1. Frontend Knowledge (Have completed the Frontend section of the Software Engineer Roadmap) so that you’re base HTML, CSS, JS and React skills are up to par.
  2. Fundamental Backend Systems Knowledge (Have completed the Systems Expert Fundamentals Course of the Software Engineer Roadmap)
  3. Know SQL, specifially PostgreSQL (Go through this course -> Datacamp)
  4. Fundamental NextJS Knowledge (Have completed the interactive NextJS Course on the nextjs.org website)

Tech Stack

  • NextJS 15 - Full-Stack React framework
  • Supabase - Database as a Service Provider
  • Clerk - Authentication as a Service Provider
  • Stripe + ByeDispute - Payments as a Service Provider + Dispute Resolution
  • Plunk - Email as a Service Provider
  • DataFast - User Analytics for Actionable Growth (Know exactly which marketing channels are working)
  • UserJot - User Feedback/Bug-Reports and Product Roadmap
  • GetFernand - Fast, Calm Customer Support
  • Vercel - Deployments without worrying about infrastructure (Auto-Scaling, DDoS protection, etc.)

Cost of running this stack

All of the above services (except GetFernand) have generous free tiers.

Even as your product grows, the cost remains minimal (averaging $300-400/month with 10,000+ DAUs for 80%+ profit margin).

These 3rd party services abstract away significant infrastructure work in key areas (payments, authentication, database, etc.), letting you focus solely on building your product.

For niche industries like healthcare, additional compliance might be required. Supabase offers HIPAA-compliant databases for $599/month.

See this Article for more information on Supabase’s SOC2 and HIPAA compliance if you’re considering building a healthcare app.

Building with Titan

1

Prerequisites

  1. Install the latest stable version of Node.js (If you already have Node.js installed, this will override it):

    • Mac/Linux: Install via nvm:
      nvm install stable
      

    Verify Node.js is installed:

    node -v
    

    Should return something like v23.x.y (at the time of writing: 23.9.0)

  2. Install Bun: We recommend using Bun for significantly faster development experience - including 10x faster dependency installation, 2-4x faster builds, and practically instant dev server startup.

# For macOS
curl -fsSL https://bun.sh/install | bash

# Verify Bun is installed:
bun -v

Should return something like 1.x.y (at the time of writing: 1.2.4)

  1. Create a new empty GitHub repository for your project

    Have the SSH repository URL ready (e.g., git@github.com:username/repo-name.git)

    Make sure it’s the SSH URL, not the HTTPS URL!

  2. Install the Supabase CLI to interact with Supabase:

    • Install via Homebrew:
      brew install supabase/tap/supabase
      
  3. Gather your Development API keys from the following services:

    • Clerk (Authentication)

      • Create account at Clerk
      • Create a new Application but only select the ‘Google’ Auth toggle (We only want to allow users to sign in with Google as it’s the least frictionless option)
      • Copy your NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY and CLERK_SECRET_KEY from the ‘API Keys’ section
    • Stripe (Payments)

      • Create account at Stripe
      • Make sure you’re in test mode (toggle at the top right)
      • Copy your STRIPE_SECRET_KEY and NEXT_PUBLIC_STRIPE_PUBLISHABLE_KEY from the ‘API Keys’ section
      • Create a product and get your NEXT_PUBLIC_STRIPE_PRICE_ID
    • Plunk (Email)

      • Create account at Plunk (We don’t care about the environment)
      • Copy your PLUNK_API_KEY from Project Settings > API Keys
    • Supabase (Database)

      • Create account at Supabase
      • Create a new project called ‘[Project Name] Dev DB’
      • When creating your database password, avoid special characters like ’#’ and ’&’ as they cause URL encoding issues
      • Copy your database password and keep it safe (ideally in a password manager)
      • Copy your NEXT_PUBLIC_SUPABASE_URL and NEXT_PUBLIC_SUPABASE_ANON_KEY from the ‘Connect’ modal on the main Project Dashboard page (click on the ‘Connect’ button) and then go to the ‘App Frameworks’ tab
      • Copy your SUPABASE_SERVICE_ROLE_KEY from the Project Settings > Data API tab
      • Copy your DATABASE_URL (with pgbouncer) and DIRECT_URL (without pgbouncer) from the same ‘Connect’ modal under the ‘ORMs’ tab
2

Setup via CLI

  1. Using your previously saved info (GitHub repo URL and API keys), create your project locally by running:

    bun x @codeandcreed/create-titan@latest
    
  2. Follow the prompts to configure your project. The CLI will:

    1. Clone the project template
    2. Create the .env file with all the required environment variables

Done! Your project is now set up:

  • Pushed to your GitHub repo ✅
  • Ready for local development ✅
3

Developing your app locally

Setup ngrok

When we run the app later, all requests will be forwarded to ngrok and then to your local app. ngrok is necessary for the auth and payments webhooks to work.

  1. Install ngrok:
    • Install via Homebrew: brew install ngrok
  2. Run ngrok http 3000
  3. Copy the ngrok URL.
  4. Update the FRONTEND_URL environment variable in your .env file to the ngrok URL.

Configure your app components in order

Your app requires several components to be set up in the correct order:

  1. First, set up your Database - See the Database Guide for setting up all your tables

  2. Next, configure Authentication - See the Authentication Guide to set up Clerk authentication

  3. Next, set up Payments - See the Payments Guide to configure Stripe payments and Dispute prevention with ByeDispute

  4. Next, set up Emails - See the Email Guide to configure Plunk emails

  5. Next, set up User Analytics - See the Analytics Guide to configure DataFast

  6. Next, set up User Feedback - See the Feedback Guide to configure UserJot

  7. Finally, set up Customer Support - See the Customer Support Guide to configure GetFernand

You must follow this order because your payments system depends on authenticated users, which in turn depend on properly configured database tables.

Run your app locally

bun run dev

Done. Your app will now be able to receive webhooks from both Clerk and Stripe.

Remember to always use the ngrok url when testing locally (not localhost:3000)

4

Updating the UI

When you initially clone the project, the UI is a basic UI for Titan itself.

But it’s up to you to rip everything out and replace with your own designs. Likewise for the Dashboard.

The following guides will help you customise the entire application UI to your liking:

Use Cursor to guide you efficiently through the process, add new features, fix bugs etc. See Building

5

Deploying the App to Production

You’ll need to purchase a domain before deploying to production. Services like Clerk and Stripe require a verified domain for production environments. Purchase a domain from providers like Namecheap, Porkbun, GoDaddy, or Google Domains before proceeding with production deployment.

When you’re ready to deploy your application to production, follow our comprehensive deployment guide:

Deploy to Production Guide

The guide covers everything you need for a successful production deployment:

  • Domain purchase and setup
  • Production database configuration
  • Production authentication setup
  • Production payments setup
  • Vercel deployment
  • Post-deployment verification
6

Setup Analytics

Track your site visitors and get insights on how they interact with your site.

  1. Create an account at DataFast
  2. Copy the Tracking code and paste it into the head of your index.html file
  3. Deploy your site
  4. Done. Real-time traffic data should now be being tracked.
7

Gather User Feedback

  1. Create an account at UserJot
  2. Create a new Workspace for the app
  3. Done. Go to ‘My Board’ to see your public feedback/roadmap board.

Future Improvements (Coming soon…)

  • Creating Waitlists with Clerk
  • Feature flag integration + Recommended usage
  • Integrate Zustand for state management client-side
  • Implement stronger security rules with ArcJet (Bot detection, Rate limiting, Data Redaction, Email Validation, Application-level DDoS protection, etc.)
  • Create a Biome security linting plugin for automatically finding and fixing security issues + integrate into Stack
  • Add option for Kinde integration (for those who have more complex RBAC needs)