-
Notifications
You must be signed in to change notification settings - Fork 126
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: introduce dev environment setup for documentation (#2609)
Signed-off-by: odubajDT <[email protected]> Signed-off-by: Moritz Wiesinger <[email protected]> Signed-off-by: odubajDT <[email protected]> Co-authored-by: Moritz Wiesinger <[email protected]>
- Loading branch information
Showing
5 changed files
with
69 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 |
---|---|---|
|
@@ -684,3 +684,4 @@ yml | |
YOURNAME | ||
yourregistry | ||
youtube | ||
squidfunk |
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 |
---|---|---|
|
@@ -52,3 +52,5 @@ readme-generator-for-helm/ | |
/out.yaml | ||
/test.yaml | ||
**helm_tests_output.yaml | ||
|
||
/docs-new/site |
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
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 |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# Contribute to the Keptn documentation | ||
|
||
This document provides information about contributing to | ||
the [Keptn documentation](https://lifecycle.keptn.sh/docs/), | ||
which is part of the [Keptn](https://keptn.sh) website. | ||
|
||
The Keptn documentation is authored with | ||
[markdown](https://www.markdownguide.org/basic-syntax/) | ||
and rendered using | ||
[MkDocs](https://www.mkdocs.org/). | ||
|
||
We welcome and encourage contributions of all levels. | ||
You can make modifications using the GitHub editor; | ||
this works well for small modifications but, | ||
if you are making significant changes, | ||
you may find it better to fork and clone the repository | ||
and make changes using the text editor or IDE of your choice. | ||
You can also run the website locally | ||
to check the rendered documentation | ||
and then push your changes to the repository as a pull request. | ||
|
||
If you need help getting started, | ||
feel free to ask for help on the `#keptn` channel on the [CNCF Slack](https://cloud-native.slack.com). | ||
We were all new to this once and are happy to help you! | ||
|
||
## Building the Documentation Locally | ||
|
||
To build and deploy the documentation in a container, execute | ||
|
||
```shell | ||
make docs-serve | ||
``` | ||
|
||
This will setup a container, install all needed dependencies, | ||
build the documentation and serve it. | ||
|
||
The URL on which your local documentation website is deployed will be | ||
displayed in the logs. | ||
By default this should be `http://0.0.0.0:8000/` |
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