Skip to content

Docs customised home page #892

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 10 commits into from
Nov 26, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@ after_build:
git clone https://github.com/json-api-dotnet/JsonApiDotNetCore.git -b gh-pages origin_site -q
Copy-Item origin_site/.git _site -recurse
Copy-Item CNAME _site/CNAME
Copy-Item home/index.html _site/index.html
Copy-Item home/favicon.icon _site/favicon.icon
Copy-Item home/assets/* _site/styles/ -Recurse
CD _site
git add -A 2>&1
git commit -m "CI Updates" -q
Expand Down
18 changes: 15 additions & 3 deletions docs/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
# Running
# Intro
Documentation for JsonApiDotNetCore is produced using [DocFX](https://dotnet.github.io/docfx/) from several files in this directory.
In addition, the example request/response pairs are generated by executing `curl` commands against the GettingStarted project.

# Installation
Run the following commands once to setup your system:
```
choco install docfx -y
```
```
npm install -g httpserver
```

# Running
The next command regenerates the documentation website and opens it in your default browser:
```
./generate.sh
docfx ./docfx.json --serve
pwsh ./build-dev.ps1
```
22 changes: 22 additions & 0 deletions docs/build-dev.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# This script assumes that you have already installed docfx and httpserver.
# If that's not the case, run the next commands:
# choco install docfx -y
# npm install -g httpserver

Remove-Item _site -Recurse -ErrorAction Ignore

dotnet build .. --configuration Release
Invoke-Expression ./generate-examples.ps1

docfx ./docfx.json
Copy-Item home/index.html _site/index.html
Copy-Item home/favicon.ico _site/favicon.ico
Copy-Item -Recurse home/assets/* _site/styles/

cd _site
httpserver &
Start-Process "http://localhost:8080/"

Write-Host ""
Write-Host "Web server started. Press Enter to close."
$key = [Console]::ReadKey()
5 changes: 2 additions & 3 deletions docs/docfx.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,10 @@
],
"build": {
"content": [
{
"files": [ "api/**.yml", "api/index.md" ]
},
{
"files": [
"api/**.yml",
"api/index.md",
"getting-started/**.md",
"getting-started/**/toc.yml",
"usage/**.md",
Expand Down
Loading