← Home

Getting Started

(Last Edited)

Prerequisites

1. Fork the repository

Fork powersagitar/mssg on GitHub, then clone your fork:

git clone https://github.com/<your-username>/mssg
cd mssg

2. Install dependencies

bun install

3. Configure the site

Edit site.config.ts at the project root:

const siteConfig: SiteConfig = {
  name: 'your-site-name',
  description: 'Your site description.',
  url: 'https://your-domain.com',
};

This is the only file you need to touch to rebrand the site.

4. Add your content

Replace the files in content/ with your own MDX files. See Writing Content for the full content model.

5. Run locally

bun dev

Open http://localhost

.

6. Build for production

bun run build
bun start

Or deploy to any platform that supports Node.js (Vercel, Netlify, Fly.io, etc.). Vercel picks up the Next.js project automatically with zero configuration.