https://github.com/servicestack/reference-docs
https://github.com/servicestack/reference-docs
Last synced: 7 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/servicestack/reference-docs
- Owner: ServiceStack
- Created: 2022-09-22T03:21:49.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-08-07T07:15:17.000Z (over 2 years ago)
- Last Synced: 2025-06-26T01:51:34.890Z (7 months ago)
- Language: C#
- Size: 56.5 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Get Started
## Install
### Prerequisites
- [.NET 6.0](https://dotnet.microsoft.com/en-us/download/dotnet/6.0)
- [docfx](https://github.com/dotnet/docfx)
```shell
dotnet tool install -g DocFxMarkdownGen
# to update
dotnet tool update -g DocFxMarkdownGen
```
If a message telling you to add dotnet tools to your `PATH` after install comes up, do as it says. You should now be able to use the `dfmg` command.
## Create
Personally I like to put my docs in the `docs` folder at the root of my repository, so let's just work with that.
```shell
yarn create docusaurus docs https://github.com/Jan0660/dfmg-template.git
# avoid git messing us up
rm -rf docs/.git
```
Note that you may need to modify `docfx.json` according to your project structure.
Done! All you need to do now is to edit `docusaurus.config.js` to suit your project and generate api documentation with the `generate.sh` script.