fish 9 months ago
parent
commit
f79ebfc6e3
5 changed files with 66 additions and 6 deletions
  1. 1 0
      .gitignore
  2. 28 0
      docs/.vitepress/config.mts
  3. 3 1
      docs/.vuepress/config.js
  4. 25 0
      docs/index.md
  5. 9 5
      docs/package.json

+ 1 - 0
.gitignore

@@ -2,3 +2,4 @@
 node_modules
 R/*.sav
 R/.Rhistory
+docs/.vitepress/cache/

+ 28 - 0
docs/.vitepress/config.mts

@@ -0,0 +1,28 @@
+import { defineConfig } from 'vitepress'
+
+// https://vitepress.dev/reference/site-config
+export default defineConfig({
+  title: "My Awesome Project",
+  description: "A VitePress Site",
+  themeConfig: {
+    // https://vitepress.dev/reference/default-theme-config
+    nav: [
+      { text: 'Home', link: '/' },
+      { text: 'Examples', link: '/markdown-examples' }
+    ],
+
+    sidebar: [
+      {
+        text: 'Examples',
+        items: [
+          { text: 'Markdown Examples', link: '/markdown-examples' },
+          { text: 'Runtime API Examples', link: '/api-examples' }
+        ]
+      }
+    ],
+
+    socialLinks: [
+      { icon: 'github', link: 'https://github.com/vuejs/vitepress' }
+    ]
+  }
+})

+ 3 - 1
docs/.vuepress/config.js

@@ -1,4 +1,6 @@
 // config.js
 module.exports = {
-    theme: 'vdoing'
+    theme: 'vdoing',
+    dest: 'public', // 可选:生成文件的目标目录
+
 }

+ 25 - 0
docs/index.md

@@ -0,0 +1,25 @@
+---
+# https://vitepress.dev/reference/default-theme-home-page
+layout: home
+
+hero:
+  name: "My Awesome Project"
+  text: "A VitePress Site"
+  tagline: My great project tagline
+  actions:
+    - theme: brand
+      text: Markdown Examples
+      link: /markdown-examples
+    - theme: alt
+      text: API Examples
+      link: /api-examples
+
+features:
+  - title: Feature A
+    details: Lorem ipsum dolor sit amet, consectetur adipiscing elit
+  - title: Feature B
+    details: Lorem ipsum dolor sit amet, consectetur adipiscing elit
+  - title: Feature C
+    details: Lorem ipsum dolor sit amet, consectetur adipiscing elit
+---
+

+ 9 - 5
docs/package.json

@@ -1,11 +1,15 @@
 {
-  "name": "docs",
-  "version": "1.0.1",
+  "name": "github_action_docs",
+  "version": "1.2.1",
   "description": "总结 github action, gitlab ci/cd, gitpod 等",
-  "main": "index.js",
   "scripts": {
-    "test": "echo \"Error: no test specified\" && exit 1"
+    "build": "vitepress build",
+    "dev": "vitepress dev",
+    "preview": "vitepress preview"
+  },
+  "devDependencies": {
+    "vitepress": "^1.2.3"
   },
   "author": "",
   "license": "ISC"
-}
+}