Skip to content

Latest commit

 

History

History
37 lines (22 loc) · 1.1 KB

File metadata and controls

37 lines (22 loc) · 1.1 KB

Ecency Documentation

This repository contains the source for the Ecency documentation site. The site is built with Astro using the Starlight theme.

Project Structure

Documentation content lives in src/content/docs. Each Markdown (.md/.mdx) file in that directory becomes a page in the generated site. Static assets can be placed in public/ and referenced with relative links.

Development

Install dependencies and start a local development server:

yarn install
yarn dev

The site will be available at http://localhost:4321 and hot–reloads as you edit files.

Build and Preview

To create a production build, run:

yarn build

The static site is output to the dist/ folder. You can preview the build locally with:

yarn preview

Contributing

Improvements and additions are welcome! Fork this repository, create your changes in src/content/docs, and open a pull request. For more information see the contribution guide.