# Guide

Welcome to the Doodle Press guide. This section covers everything you need to get the project running locally and points you to the frontend and backend guides for deeper, topic-specific documentation.

# Getting Started

To get started with this project, follow these steps:

  1. Installation: Install the project dependencies.

    npm install
    
  2. Development Server: Start the local development server.

    npm run docs:dev
    
  3. View in Browser: Open your browser and navigate to http://localhost:8080/ (opens new window) to view the site.

# Project Structure

This project follows the standard VuePress structure:

docs/
├── .vuepress/
│   └── config.js      # site configuration (nav, sidebar, theme)
├── guide/
│   ├── README.md       # this page
│   ├── frontend.md
│   └── backend.md
├── JavaScript/
│   ├── README.md
│   ├── intermediate.md
│   └── advance.md
├── about.md
├── documentation.md
└── README.md           # homepage

# Next Steps