NEXTSCRIBE

Posts tagged with "nextscribe"

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

  1. Clone the repository:
git clone git@github.com:releasysaas/nextscribe.git cd nextscribe
  1. Install dependencies:
pnpm install
  1. Set up Supabase:

    • Create a project at Supabase
    • Import the schema from supabase/schema.sql
    • Copy your project URL and API keys
  2. 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
  1. 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

FeatureSupported
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:

  1. Creating your first post
  2. Customizing the theme
  3. Deploying to Vercel

Visit our GitHub repository for detailed documentation and updates.

Happy blogging with NextScribe! 🚀🚀🚀