Skip to main content

Getting Started

Learn how to set up and start using Null MDX

Getting Started

Welcome to Null MDX! This guide will help you get up and running quickly.

Installation

First, clone the repository and install dependencies:

git clone https://github.com/your-repo/null-mdx.git
cd null-mdx
npm install

Configuration

Create a .env.local file with your Supabase credentials:

NEXT_PUBLIC_SUPABASE_URL=your-supabase-url
NEXT_PUBLIC_SUPABASE_ANON_KEY=your-supabase-anon-key

Running the Development Server

Start the development server:

npm run dev

Open http://localhost:3000 to see your site.

Next Steps