---
title: "Neon Storage Support Now Available in LaunchFast Starter Kits"
description: "LaunchFast now ships with Neon Storage support. Keep your Postgres database and file uploads in the same Neon project. Same repo, same STORAGE_PROVIDER=s3, just plug in your endpoint and credentials."
source: "https://www.launchfa.st/blog/neon-storage-support"
author: "Rishi Raj Jain"
created_at: 2026-06-16T04:30:00.000Z
keywords: "neon, neon storage, postgres, s3, object storage, launchfast, starter kit, bring your own database"
---

> **Site index for agents**
> Fetch https://www.launchfa.st/llms.txt to discover every page on this site.
> Every page is also available as Markdown by appending `.md` to its URL.

<img width="1600" height="900" alt="Neon Storage Support Now Available in LaunchFast Starter Kits" decoding="async" loading="eager" class="mt-4 border rounded-sm bg-cover bg-center bg-no-repeat transform will-change-auto" src="https://ik.imagekit.io/vjeqenuhn/launchfast-website/neon-storage-support.png" />

LaunchFast now ships with [**Neon Storage**](https://neon.com/blog/were-building-backends) support.

Same repo. Same `STORAGE_PROVIDER=s3`. Just plug in your Neon endpoint and credentials, and you're uploading files next to your Postgres branch.

Bring your own database with LaunchFast was already the whole point. Now the files live in the same project too.

**One stack. One dashboard. Ship faster.**

<video controls class="rounded aspect-video" autoplay="false">
    <source src="https://ik.imagekit.io/vjeqenuhn/launchfast-website/neon-storage-demo.mp4" type="video/mp4">
</video>

## Why this matters

Most LaunchFast apps need two things on day one. A database for users, sessions, and billing, plus object storage for avatars, uploads, and generated assets. With Neon, both can live in one project.

- **Fewer vendors**: Postgres and file storage in the same Neon dashboard.
- **Branch-friendly**: Your database branches and storage buckets stay aligned as you develop and preview.
- **No new storage API**: LaunchFast already supports S3-compatible providers. Neon Storage plugs into the same code path as Amazon S3 and Cloudflare R2.

## What's included

- **S3-compatible uploads and retrieval** via LaunchFast's existing `/api/storage` routes and `<Upload />` component
- **Pre-signed URLs** for secure client-side uploads, same flow as AWS S3 and Cloudflare R2
- **One env var addition**: `AWS_ENDPOINT_URL_S3` points the S3 client at your Neon Storage endpoint
- **Available in all frameworks**: Astro, Next.js, and SvelteKit starter kits

Under the hood, the Astro starter kit routes object URLs through a shared S3 helper that picks the right endpoint automatically. R2 when `CLOUDFLARE_R2_ACCOUNT_ID` is set, Neon when `AWS_ENDPOINT_URL_S3` is set, and standard AWS S3 otherwise.

## Getting started

### 1. Enable Storage in your Neon project

Open your [Neon Console](https://console.neon.tech/) project and go to the **Storage** tab. Create a bucket, click **Connect**, click **Generate Credentials**, and copy:

- S3 endpoint URL
- Access key ID
- Secret access key
- Bucket name
- Region name

### 2. Configure your `.env`

Set `STORAGE_PROVIDER` to `s3`, then add your Neon Storage credentials:

```bash
STORAGE_PROVIDER="s3"

AWS_ENDPOINT_URL_S3="https://....storage.c-3.us-east-2.aws.neon.tech"
AWS_KEY_ID="..."
AWS_SECRET_ACCESS_KEY="..."
AWS_S3_BUCKET_NAME="...-bucket-0"
AWS_REGION_NAME="us-east-2"
```

Do **not** set `CLOUDFLARE_R2_ACCOUNT_ID` when using Neon Storage, that variable is only for Cloudflare R2.

If you're already running Postgres on Neon, your database URLs (`POSTGRES_DIRECT_URL`, `POSTGRES_SESSION_POOLED_URL`) stay as they are. You're only adding storage credentials alongside them.

### 3. Run the app and upload a file

Start your dev server, sign in, and upload a profile image or any file through the built-in upload flow. LaunchFast generates a pre-signed PUT URL against your Neon bucket, the browser uploads directly, and retrieval works through the same signed-URL path.

## Other storage providers

Neon Storage joins the storage providers LaunchFast already supports:

- **Amazon S3**: [/documentation/storage/amazon-s3/](/documentation/storage/amazon-s3/)
- **Cloudflare R2**: [/documentation/storage/cloudflare-r2/](/documentation/storage/cloudflare-r2/)
- **Bunny Storage**: [/blog/bunny-storage-support/](/blog/bunny-storage-support/)
- **Supabase Storage**: [/documentation/storage/supabase/](/documentation/storage/supabase/)
- **Firebase Storage**: [/documentation/storage/firebase/](/documentation/storage/firebase/)

Switch providers anytime by updating `STORAGE_PROVIDER` and the relevant env vars. No application code changes required.

## Get started today

Ready to keep your database and files in one Neon project?

[**Get LaunchFast Starter Kit**](/) and ship with one stack from day one.
