-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2868 from moreal/docs-readme
Write documents about documentation
- Loading branch information
Showing
7 changed files
with
34 additions
and
13 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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Deployment | ||
|
||
Lib9c automatically deploys documents with GitHub Actions. | ||
|
||
Documents are published to `<ref>` (e.g., `development`, `1.18.0`, etc) directory in `gh-pages` branch. when tags or branches are pushed. But tags or branches, starting with `v` are ignored because they are already reserved for other purpose. | ||
|
||
After documents were published, you can see your docs at `https://lib9c.nine-chronicles.dev/<ref>`. | ||
|
||
For details, you can see [`publish-docs` workflow](https://github.com/planetarium/lib9c/blob/development/.github/workflows/publish-docs.yml) |
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,9 @@ | ||
# Structure | ||
|
||
Lib9c document has following structures: | ||
|
||
``` | ||
api/ <-- Auto-generated .NET APIs | ||
articles/ <-- Documents about Lib9c behavior | ||
contributing/ <-- Documents for Lib9c contributors | ||
``` |
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,5 @@ | ||
items: | ||
- name: Structure | ||
href: structure.md | ||
- name: Deployment | ||
href: deployment.md |
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,4 @@ | ||
# See https://dotnet.github.io/docfx/docs/table-of-contents.html | ||
- name: Documentation | ||
href: documentation/toc.yml | ||
expanded: true |
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 |
---|---|---|
@@ -1,11 +1 @@ | ||
--- | ||
_layout: landing | ||
--- | ||
|
||
# This is the **HOMEPAGE**. | ||
|
||
Refer to [Markdown](http://daringfireball.net/projects/markdown/) for how to write markdown files. | ||
|
||
## Quick Start Notes: | ||
|
||
1. Add images to the *images* folder if the file is referencing an image. | ||
[!include[README](../README.md)] |
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,4 +1,6 @@ | ||
- name: Docs | ||
href: articles/ | ||
- name: API | ||
href: api/ | ||
href: api/ | ||
- name: Contributing | ||
href: contributing/ |