Getting Started

Get started with MarkoPress in minutes


# Getting Started with MarkoPress

Welcome! This guide will help you get started with MarkoPress.

# Installation

npm install markopress

# Quick Start

  1. Create a markopress.config.ts file:
import { defineConfig } from 'markopress';

export default defineConfig({
  site: {
    title: 'My Site',
    description: 'Welcome to my site',
  },
  content: {
    pages: 'content/pages',
    docs: 'content/docs',
    blog: 'content/blog',
  },
});
  1. Create your content in the content/ directory

  2. Start the development server:

npm run dev

# Next Steps