# 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:
Installation: Install the project dependencies.
npm installDevelopment Server: Start the local development server.
npm run docs:devView 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
- Frontend Guide — building and structuring the frontend.
- Backend Guide — server-side setup and concepts.
- JavaScript Reference — JavaScript fundamentals through advanced topics.