Skip to content

Latest commit

 

History

History
49 lines (28 loc) · 1.61 KB

contributing.md

File metadata and controls

49 lines (28 loc) · 1.61 KB

Contributing

Hello! It's great that you are interested in contributing to my blog.

Before submitting your contribution, please take a moment to read the following guide.

Local Development

This project uses the pnpm package manager. Therefore, to work with the project, you need to install it.

How to set up a project locally:

  1. Clone repo:
git clone git@github.com:azat-io/azat-io.git
  1. Install dependencies:
pnpm install
  1. Run local server:
pnpm start

Content Translation

It is my great pleasure to welcome you if you have a desire to help translate my blog articles into your language.

To start translating an article, you need to copy the file with the original article in English. All articles are located in the content/blog/{article name}/ directory. Create in a file next to the original article file. Specify the two-digit ISO 639-1 code of your language as the file name.

For example, you want to translate the article /content/blog/hello-world/en.mdx into Chinese. Copy this file to /content/blog/hello-world/zh.mdx.

As a thank you, I will cite you as the author of the translation in the article.

If you have any questions, feel free to create issue or message me on social media.

Pull Request Guidelines

Before create pull request fork this repo and create a new branch.

Commit messages must follow the commit message convention so that changelogs can be automatically generated.

Make sure tests pass.