This repository contains the website code and Markdown articles for Crowdin Docs.
If you would like to contribute to the documentation, please read the Contribution Guidelines.
Clone the repository and install the dependencies:
git clone [email protected]:crowdin/docs.git
cd docs
npm install
Run the development server:
npm run dev
Open your browser and navigate to http://localhost:4321.
Note!
- Make sure you have Node.js v20 or higher installed on your machine.
- This project uses the Conventional Commits specification for commit messages and PR titles.
Some important files and directories:
astro.config.mjs
- Astro configuration file.src/content/docs
- contains groups describing the documentation for each product.src/assets/screenshots
- contains screenshots for the documentation.src/content/sidebrs
- sidebar configuration for Crowdin KB, Crowdin Enterprise KB, Developer Portal.src/content/includes
- reusable content blocks that can be included in the documentation.src/components
- contains reusable Astro components for the documentation.src/pages
- custom pages.public
- static assets like favicons, images that do not need optimization, etc.
All commands are run from the root of the project, from a terminal:
Command | Action |
---|---|
npm install |
Installs dependencies |
npm run dev |
Starts local dev server at localhost:4321 |
npm run build |
Build your production site to ./dist/ |
npm run preview |
Preview your build locally, before deploying |
npm run astro ... |
Run CLI commands like astro add , astro check |
npm run astro -- --help |
Get help using the Astro CLI |
This project is built with Astro and Starlight. Here are some resources to get you started: