-
Notifications
You must be signed in to change notification settings - Fork 137
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update Hugo version and improve documentation setup guide
Updated the CI workflow to use Hugo 0.140.2 for building the site. Added details in the README on installing Hugo and running the documentation site locally with clear instructions.
- Loading branch information
1 parent
104352d
commit bfe0175
Showing
2 changed files
with
22 additions
and
1 deletion.
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
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 +1,22 @@ | ||
# https://docs.duendesoftware.com | ||
|
||
## Getting Started | ||
|
||
You will need [**Hugo 0.140.2**](https://gohugo.io/) installed on your operating system and in the PATH. | ||
|
||
See the [official Hugo documentation](https://gohugo.io/installation/) for OS-specific instructions. | ||
|
||
## Running the Documentation Site(s) | ||
|
||
There are several versions of documentation in the repository, and they all operate similarly. | ||
|
||
Any directory containing a `config.toml` file is a Hugo instance, and can be interacted with | ||
using hugo commands. To launch a site use the `hugo serve` command. To launch the latest | ||
documentation site, use the following commands in a terminal from the root directory. | ||
|
||
```bash | ||
cd ./IdentityServer/v7/docs | ||
hugo serve | ||
``` | ||
|
||
See the output for the running documentation site, typically at `http://localhost:1313/identityserver/v7/`. |