https://github.com/devtoys-app/documentation
API reference and tutorials on how to use DevToys and develop an extension
https://github.com/devtoys-app/documentation
docfx
Last synced: 3 months ago
JSON representation
API reference and tutorials on how to use DevToys and develop an extension
- Host: GitHub
- URL: https://github.com/devtoys-app/documentation
- Owner: DevToys-app
- License: mit
- Created: 2024-03-24T16:57:37.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-10-21T00:11:07.000Z (over 1 year ago)
- Last Synced: 2025-11-21T22:02:14.063Z (6 months ago)
- Topics: docfx
- Language: JavaScript
- Size: 6.74 MB
- Stars: 3
- Watchers: 1
- Forks: 12
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
- Code of conduct: CODE-OF-CONDUCT.md
Awesome Lists containing this project
README
This is the documentation website of DevToys
# Setup this repository
Install [.NET SDK 8.0](https://dotnet.microsoft.com/en-us/download) or higher, then open a command line prompt and enter the following command:
```powershell
> git submodule update --init --recursive
> git submodule update --remote --merge
> dotnet tool update -g docfx
```
# How to build
```powershell
> docfx
```
# How to run locally
```powershell
> docfx --serve
```
Now you can preview the website on [http://localhost:8080/](http://localhost:8080/)
## Hot reload
Instead of running the command above, use NodeJS:
1. Install the dev dependencies by running:
```powershell
> npm install -D
```
2. Run:
```powershell
> npm run watch
```
> Note!
>
> If you are running the local server on Linux, replace the `watch` script with this:
> `npm-watch build & npm run browser-livereload`