Getting Started
Fork, configure, and run mSSG in minutes.
(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 mssg2. Install dependencies
bun install3. 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 devOpen localhost:3000.
6. Build for production
bun run build
bun startOr deploy to any platform that supports Node.js (Vercel, Netlify, Fly.io, etc.). Vercel picks up the Next.js project automatically with zero configuration.