Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/devtoys-app/website
The website of DevToys
https://github.com/devtoys-app/website
blazor blog website
Last synced: 2 months ago
JSON representation
The website of DevToys
- Host: GitHub
- URL: https://github.com/devtoys-app/website
- Owner: DevToys-app
- License: mit
- Created: 2024-04-17T04:48:09.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-10-20T17:40:53.000Z (3 months ago)
- Last Synced: 2024-10-20T21:13:48.960Z (3 months ago)
- Topics: blazor, blog, website
- Language: HTML
- Size: 2.19 MB
- Stars: 3
- Watchers: 0
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Website
The website of DevToys# Update the documentation
1. Build the documentation website from the submodule/
```powershell
git submodule update --init --recursive;
git submodule update --remote --merge;
dotnet tool update -g docfx;
docfx ".\submodule\Documentation\docfx.json";
```2. Copy the documentation website to the `wwwroot` folder
```powershell
# Remove the 'doc' directory if it exists
Remove-Item -Path ".\src\Website\wwwroot\doc" -Recurse -Force;# Clear the 'submodule' directory in the _site folder.
Remove-Item -Path ".\submodule\Documentation\_site\submodule" -Recurse -Force;# Copy the documentation website to the 'doc' directory
Copy-Item -Path ".\submodule\Documentation\_site" -Destination ".\src\Website\wwwroot\doc" -Recurse -Force;
```3. Build and publish `Website.sln`.