Skip to content

Latest commit

 

History

History
42 lines (31 loc) · 881 Bytes

README.md

File metadata and controls

42 lines (31 loc) · 881 Bytes

This is the documentation website of DevToys

Setup this repository

Install .NET SDK 6.0 or higher, then open a command line prompt and enter the following command:

> git submodule update --init --recursive
> git submodule update --remote --merge
> dotnet tool update -g docfx

How to build

> docfx

How to run locally

> docfx --serve

Now you can preview the website on http://localhost:8080/

Hot reload

Instead of running the command above, use NodeJS:

  1. Install the dev dependencies by running:
    > npm install -D
  2. Run:
    > 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