> ## Documentation Index
> Fetch the complete documentation index at: https://docs.anotherwrapper.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Platform Overview

> The services that power your product — set them up at your own pace

Your apps look great on the surface, but underneath they're powered by a shared platform. This is where you set up auth, storage, AI, credits, email, and everything else your product needs.

<Tip>
  You don't need to set up everything at once. Start with auth + database + one AI provider (that's the [Quick Setup](/setup/introduction)), then add more services as you need them.
</Tip>

## What to set up first

These are the essentials — most apps need them.

<CardGroup cols={2}>
  <Card title="Auth & Database" icon="shield" href="/services/better-auth-postgresql">
    Better Auth for sign-in, sessions, and OAuth. PostgreSQL + Drizzle for your data layer. This is step one.
  </Card>

  <Card title="Storage" icon="hard-drive" href="/services/storage">
    S3-compatible object storage for uploads, generated images, audio, video, and PDFs.
  </Card>

  <Card title="AI SDK" icon="microchip" href="/services/ai-sdk">
    The abstraction layer that lets your app talk to OpenAI, Anthropic, Google, and more through one interface.
  </Card>

  <Card title="Credits & Billing" icon="wallet" href="/services/credits-billing">
    Monetize AI features with a built-in credit system powered by payments.
  </Card>
</CardGroup>

## Add when you need them

These are powerful but optional — add them when your product is ready.

<CardGroup cols={2}>
  <Card title="Vector RAG" icon="database" href="/services/vector-rag">
    Upload PDFs, index them with embeddings, and get answers with citations. Turns chat into a knowledge assistant.
  </Card>

  <Card title="Email" icon="envelope" href="/services/email">
    Auth emails and contact sync with Loops, Resend, or Brevo.
  </Card>
</CardGroup>

## Recommended setup order

<Steps>
  <Step title="Auth & Database">
    [Set up Better Auth + PostgreSQL](/services/better-auth-postgresql) — required for everything.
  </Step>

  <Step title="At least one AI provider">
    [Pick a provider](/providers/index) — OpenAI is the easiest starting point.
  </Step>

  <Step title="Storage">
    [Configure S3 storage](/services/storage) — needed for uploads, image/video/voice outputs.
  </Step>

  <Step title="Credits">
    [Set up credits](/services/credits-billing) — if you want to monetize AI features.
  </Step>

  <Step title="Email">
    [Configure email](/services/email) — when you want magic links, password resets, or contact sync.
  </Step>

  <Step title="Vector RAG">
    [Enable document chat](/services/vector-rag) — when you want PDF chat with citations.
  </Step>
</Steps>

<Info>
  Looking for analytics, SEO, landing page, or monitoring? Those are in the [Growth & Marketing](/services/analytics) and [Ship It](/setup/deployment) sections of the sidebar.
</Info>
