-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ffe2e37
commit d693edf
Showing
1 changed file
with
29 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,29 @@ | ||
# docs | ||
📖 Docs for gttp | ||
# GTTP Documentation | ||
|
||
[![Build Status](https://github.com/gttp-cli/docs/actions/workflows/deploy.yml/badge.svg)](https://travis-ci.org/gttp-cli/docs) | ||
|
||
|
||
> [!IMPORTANT] | ||
> The docs are automatically synced with the [main repository](https://github.com/gttp-cli/gttp). | ||
> Please edit the `docs` folder there, if you want to contribute to the documentation. | ||
> | ||
> You only need to contribute to this repository if you want to contribute to the documentation build process. | ||
## Local Development | ||
|
||
The docs are generated using [Docusaurus](https://docusaurus.io/). | ||
To run the documentation locally, you need to have [Node.js](https://nodejs.org/en/download/) and [pnpm](https://pnpm.io/) installed. | ||
|
||
To run the documentation locally, run the following command: | ||
|
||
```bash | ||
pnpm install # only needed on first run | ||
pnpm start | ||
``` | ||
|
||
This will start a local server and open the documentation in your default browser. | ||
You can now edit the documentation and see the changes live. | ||
|
||
## Deployment | ||
|
||
The documentation is automatically deployed to GitHub Pages using GitHub Actions. |