ente/docs/README.md

54 lines
1.2 KiB
Markdown
Raw Normal View History

2023-12-16 12:48:47 +00:00
# Docs
2024-03-08 10:48:40 +00:00
Help and documentation for Ente's products.
2023-12-16 12:48:47 +00:00
2024-03-08 10:48:40 +00:00
You can find the live version of these at
**[help.ente.io](https://help.ente.io)**.
2024-03-01 04:48:44 +00:00
2024-03-08 10:19:13 +00:00
## Quick edits
You can edit these files directly on GitHub and open a pull request.
[help.ente.io](https://help.ente.io) will automatically get updated with your
changes in a few minutes after your pull request is merged.
## Running locally
The above workflow is great since it doesn't require you to setup anything on
your local machine. But if you plan on contributing frequently, you might find
2024-03-08 10:48:40 +00:00
it easier to run things locally.
2024-03-08 10:19:13 +00:00
Clone this repository
```sh
git clone https://github.com/ente-io/ente
```
Change to this directory
```sh
cd ente/docs
```
Install dependencies
```sh
yarn install
2023-12-16 12:48:47 +00:00
```
Then start a local server
```sh
yarn dev
2023-12-16 12:48:47 +00:00
```
2024-03-01 04:08:18 +00:00
2024-03-08 10:19:13 +00:00
For an editor, VSCode is a good choice. Also install the Prettier extension for
VSCode, and set VSCode to format on save. This way the editor will automatically
format and wrap the text using the project's standard, so you can just focus on
the content.
2024-03-01 04:08:18 +00:00
2024-03-08 10:19:13 +00:00
## Have fun!
2024-03-01 04:08:18 +00:00
If you're unsure about how to do something, just look around in the other files
and copy paste whatever seems to match the look of what you're trying to do. And
remember, writing docs should not be a chore, have fun!