Skip to content

Commit e2ec163

Browse files
committed
more links and debug
1 parent f230bb0 commit e2ec163

File tree

2 files changed

+16
-7
lines changed

2 files changed

+16
-7
lines changed

.github/workflows/main.yml

+5-2
Original file line numberDiff line numberDiff line change
@@ -48,11 +48,14 @@ jobs:
4848
- name: Install dependencies
4949
run: npm ci # or pnpm install / yarn install / bun install
5050
- name: Build with VitePress
51-
run: npm run docs:build
51+
run: |
52+
npm run docs:build
53+
ls -l src
54+
ls -l .vitepress/dist
5255
- name: Upload artifact
5356
uses: actions/upload-pages-artifact@v3
5457
with:
55-
path: docs
58+
path: .vitepress/dist
5659

5760
deploy:
5861
environment:

.vitepress/config.mts

+11-5
Original file line numberDiff line numberDiff line change
@@ -5,26 +5,32 @@ export default defineConfig({
55
title: "Zencode W3C VC",
66
description: "Dyne.org W3C VC based on W3C standard and implemented using Zencode.",
77
base: "/zencode-w3c-vc/",
8-
outDir: "./docs",
98
srcDir: "./src",
109
themeConfig: {
1110
// https://vitepress.dev/reference/default-theme-config
1211
nav: [
1312
{ text: 'Home', link: '/' },
14-
{ text: 'Examples', link: '/markdown-examples' }
13+
{ text: 'DIDRoom', link: 'https://didroom.com' },
14+
{ text: 'Credimi', link: 'https://credimi.io' },
15+
{ text: 'Zenroom', link: 'https://zenroom.org' },
16+
{ text: 'Zencode', link: 'https://dev.zenroom.org' },
17+
{ text: 'Slangroom', link: 'https://dyne.org/slangroom' },
1518
],
1619

1720
sidebar: [
1821
{
19-
text: 'Use-cases',
22+
text: 'Use in your app',
2023
items: [
21-
{ text: 'EUDI Wallet', link: 'https://didroom.com' },
22-
{ text: 'Interop', link: 'https://credimi.io' }
24+
{ text: 'How to embed', link: 'https://dev.zenroom.org/#/pages/how-to-embed' },
25+
{ text: 'Javascript', link: 'https://dev.zenroom.org/#/pages/javascript' },
26+
{ text: 'Python', link: 'https://dev.zenroom.org/#/pages/python' },
27+
{ text: 'Java', link: 'https://dev.zenroom.org/#/pages/java' }
2328
]
2429
}
2530
],
2631

2732
socialLinks: [
33+
{ icon: 'linkedin', link: 'https://linkedin.com/company/forkbomb' },
2834
{ icon: 'github', link: 'https://github.com/dyne/zencode-w3c-vc' }
2935
]
3036
}

0 commit comments

Comments
 (0)