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
- Create a
markopress.config.tsfile:
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',
},
});
Create your content in the
content/directoryStart the development server:
npm run dev
# Next Steps
- Learn about configuration
- Explore themes
- Build plugins
On This Page