Skip to content

Commit 4500a27

Browse files
authored
Merge pull request #645 from DuendeSoftware/newdocs
New documentation website
2 parents bcd2760 + 6ad6062 commit 4500a27

2,381 files changed

Lines changed: 43239 additions & 622495 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.devcontainer.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"image": "mcr.microsoft.com/devcontainers/typescript-node:22",
3+
"customizations": {
4+
"vscode": {
5+
"extensions": [
6+
"astro-build.astro-vscode",
7+
"esbenp.prettier-vscode"
8+
]
9+
}
10+
},
11+
"forwardPorts": [
12+
4321
13+
],
14+
"postCreateCommand": "npm install"
15+
}

.fleet/run.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"configurations": [
3+
{
4+
"type": "npm",
5+
"name": "🚀 Run Astro",
6+
"command": "run",
7+
"scripts": "dev"
8+
}
9+
]
10+
}

.github/workflows/ci.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,13 @@ jobs:
1919
- uses: actions/checkout@v2
2020
with:
2121
submodules: true
22-
- name: Setup Hugo
23-
uses: peaceiris/actions-hugo@v2
22+
- name: Setup Node
23+
uses: actions/setup-node@v4
2424
with:
25-
hugo-version: '0.140.2'
26-
- name: Run hugo
25+
node-version: 22
26+
- name: Run build
2727
run: |
2828
echo $PWD
29-
export HUGO_ENV='production'
3029
./build.sh
3130
- name: Build And Deploy
3231
if: (github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.action != 'closed')) && env.AZURE_STATIC_WEB_APPS_API_TOKEN_HAPPY_OCEAN_048B8E60F != ''

.github/workflows/link-checker.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,19 +20,18 @@ jobs:
2020
- uses: actions/checkout@v2
2121
with:
2222
submodules: true
23-
- name: Setup Hugo
24-
uses: peaceiris/actions-hugo@v2
23+
- name: Setup Node
24+
uses: actions/setup-node@v4
2525
with:
26-
hugo-version: '0.140.2'
27-
- name: Run hugo
26+
node-version: 22
27+
- name: Run build
2828
run: |
2929
echo $PWD
30-
export HUGO_ENV='production'
3130
./build.sh
3231
- name: Link Checker
3332
uses: lycheeverse/lychee-action@v2
3433
env:
3534
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
3635
with:
37-
args: "--no-progress --max-concurrency 8 --accept 200,429 --exclude-loopback --require-https --exclude sample.duendesoftware.com --exclude \"https://github.com/DuendeArchive/IdentityModel.AspNetCore/\" --root-dir \"$PWD/root\" root/**"
36+
args: "--no-progress --max-concurrency 8 --accept 200,429 --exclude-path root/llms.txt --exclude-path root/llms-full.txt --exclude-path root/llms-small.txt --exclude-loopback --require-https --exclude sample.duendesoftware.com --exclude docs.duendesoftware.com --exclude sitemap --exclude \"https://github.com/DuendeArchive/IdentityModel.AspNetCore/\" --root-dir \"$PWD/root\" root/**"
3837
fail: true

.gitignore

Lines changed: 18 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,24 @@
1-
# general
2-
.DS_Store
1+
# build output
2+
dist/
3+
root/
4+
# generated types
5+
.astro/
36

4-
# hugo
5-
public
6-
root/bff/
7-
root/foss/
8-
root/identityserver/
9-
.hugo_build.lock
7+
# dependencies
8+
node_modules/
109

11-
# .net
12-
[Dd]ebug/
13-
[Dd]ebugPublic/
14-
[Rr]elease/
15-
[Rr]eleases/
16-
x64/
17-
x86/
10+
# logs
11+
npm-debug.log*
12+
yarn-debug.log*
13+
yarn-error.log*
14+
pnpm-debug.log*
1815

19-
bld/
20-
[Bb]in/
21-
[Oo]bj/
2216

23-
.idea
24-
.vs/
17+
# environment variables
18+
.env
19+
.env.production
2520

26-
IdentityServer/v6/docs/.hugo_build.lock
21+
# macOS-specific files
22+
.DS_Store
2723
.vscode/settings.json
24+
*.iml

.idea/.gitignore

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/docs.duendesoftware.com.iml

Lines changed: 13 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/externalDependencies.xml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/prettier.xml

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)