Getting Started

Celestial Docs is a documentation theme built on top of the Astro framework. This guide will help you get started with a new project.

Create a new project

To create your own documentation site using BACH Money Docs, follow these steps:

  • Visit the BACH Money Docs GitHub repository.
  • Click on the “Use this template” button.
  • Follow the prompts to create a new repository using this template.

Local Setup

After creating your repository, follow these steps to set up the project locally:

Clone your repository:

git clone https://github.com/yourusername/your-repo-name.git
cd your-repo-name

Install dependencies:

npm install

Start the development server:

npm run dev

Your documentation site will be available at http://localhost:4321.

Customizing Your Documentation

BACH Money Docs is built to be highly customizable. You can start editing the markdown files in the content folder to create your own documentation pages.

To add new pages or sections, simply create new markdown files and folders inside the content directory, following the existing structure.

Next Steps