Getting Started with NextScribe: Your Modern Markdown Blog Platform
NextScribe is a modern, lightning-fast blogging platform that combines the power of Next.js, Supabase, and Tailwind CSS. In this post, I'll show you how to get up and running with NextScribe in just 5 minutes, and demonstrate some of its powerful markdown features.
What is NextScribe?
NextScribe is designed for developers and technical writers who want:
- 📝 A clean, distraction-free writing experience
- 🎨 Beautiful, responsive design out of the box
- 🌓 Dark/Light mode support
- 🚀 Blazing fast performance
- 🔐 Secure authentication
5-Minute Setup
- Clone the repository:
git clone git@github.com:releasysaas/nextscribe.git cd nextscribe
- Install dependencies:
pnpm install
-
Set up Supabase:
- Create a project at Supabase
- Import the schema from
supabase/schema.sql
- Copy your project URL and API keys
-
Configure environment:
cp .env.example .env
Update with your Supabase details:
NEXT_PUBLIC_SUPABASE_URL=your-project-url
NEXT_PUBLIC_SUPABASE_ANON_KEY=your-anon-key
- Start the development server:
pnpm dev
That's it! Visit http://localhost:3000
to see your blog.
Markdown Editor Features
NextScribe comes with a powerful markdown editor. Here are some examples:
Text Formatting
You can write bold text, italic text, or both. Create lists:
- Item 1
- Item 2
- Nested item
- Another nested item
Code Blocks
def hello_nextscribe(): print("Welcome to NextScribe!")
Tables
Feature | Supported |
---|---|
Tables | ✅ |
Code blocks | ✅ |
Math formulas | ✅ |
Block Quotes
NextScribe makes blogging beautiful and simple.
-- A happy developer
Next Steps
Now that you have NextScribe running, try:
- Creating your first post
- Customizing the theme
- Deploying to Vercel
Visit our GitHub repository for detailed documentation and updates.
Happy blogging with NextScribe! 🚀🚀🚀