Skip to main content
Sunset skyline.

Getting Started

2 min 412 words

Welcome to Astro Modular! This quick start guide will get your blog running in minutes. Choose your preferred workflow below.

Prerequisites & Installation

You’ll need:

  • Node.js 18+
  • pnpm (recommended) or npm

Quick Setup

# Install pnpm
npm install -g pnpm

# Install dependencies
pnpm install

# Preview
pnpm dev # or pnpm preview
# Available at http://localhost:5000

# Build for production
pnpm build

Choose Your Workflow

Using Obsidian?

Perfect! Astro Modular is designed specifically for Obsidian users.

Quick Start:

  1. Open folder as vault: Navigate to src/content/ in Obsidian
  2. Trust the author and enable the preconfigured plugins
  3. Use the Astro Modular Settings wizard to configure your theme and preferences
  4. Start writing with the included templates and hotkeys

What you get:

  • Seamless publishing: write in Obsidian, publish to your blog with git
  • Versatile internal linking support: [[Wikilinks]] and markdown links work perfectly
  • Obsidian-specific features: callouts, highlighting, and more display beautifully
  • Preconfigured plugins & hotkeys: all optimized for blogging

Next Steps:

  • Read the Obsidian Vault Guide for detailed setup
  • Use the Astro Modular Settings plugin to customize your theme and preferences
  • Start writing your first post with the included templates

Not Using Obsidian?

No problem! You can still use Astro Modular with any editor.

Quick Start:

  1. Edit src/config.ts to customize your site settings
  2. Create content in src/content/posts/ using standard markdown
  3. Deploy when ready

Next Steps:

Essential Configuration

Update these core settings in src/config.ts:

export const siteConfig = {
  site: 'https://yourdomain.com',
  title: 'Your Blog Title',
  description: 'Your blog description',
  author: 'Your Name',
  language: 'en',
}

Key Features

17+ Beautiful Themes

Switch between Oxygen, Minimal, Nord, Dracula, and more. Use Ctrl+K → “Change Theme” for instant switching.

Command Palette

Press Ctrl+K for instant navigation, search, and theme switching.

Responsive & Fast

Optimized for performance with automatic image optimization and lazy loading.

Smart Linking

  • Wikilinks (Obsidian users): [[Post Title]]
  • Standard links (all users): [Post Title](posts/post-slug)

Content Types

  • Posts - Blog articles with tags and linked mentions
  • Pages - Static pages like About, Contact
  • Projects - Portfolio items and showcases
  • Documentation - Guides and references

Next Steps

For Obsidian Users:

  1. Set up the vault - Open src/content/ in Obsidian
  2. Configure with the plugin - Use Astro Modular Settings
  3. Start writing - Use the included templates and hotkeys
  4. Read the vault guide - Obsidian Vault Guide

For Non-Obsidian Users:

  1. Customize your site - Edit src/config.ts
  2. Read the full guide - Complete Setup Guide
  3. Explore features - Formatting Reference
  4. Start writing - Create your first post

Need Help?

Your modular Astro blog is ready to go!

Formatting Reference

...create internal links using double brackets (wikilinks) or with standard markdown. For example: [[Getting Started]] or [[Astro Suite Obsidian Vault Guide (Astro Modular)]]. ```markdown For...

Referenced in this post