TianChenjiang преди 4 години
ревизия
25f1fe90d4
променени са 4 файла, в които са добавени 29 реда и са изтрити 0 реда
  1. 4 0
      Dockerfile
  2. 0 0
      docs/.nojekyll
  3. 3 0
      docs/README.md
  4. 22 0
      docs/index.html

+ 4 - 0
Dockerfile

@@ -0,0 +1,4 @@
+FROM node:latest
+WORKDIR /docs
+RUN npm install -g docsify-cli@latest
+ENTRYPOINT docsify serve .

+ 0 - 0
docs/.nojekyll


+ 3 - 0
docs/README.md

@@ -0,0 +1,3 @@
+# SEECODER Docs
+
+> Test

+ 22 - 0
docs/index.html

@@ -0,0 +1,22 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+  <meta charset="UTF-8">
+  <title>Document</title>
+  <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
+  <meta name="description" content="Description">
+  <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
+  <link rel="stylesheet" href="//cdn.jsdelivr.net/npm/docsify@4/lib/themes/vue.css">
+</head>
+<body>
+  <div id="app"></div>
+  <script>
+    window.$docsify = {
+      name: '',
+      repo: ''
+    }
+  </script>
+  <!-- Docsify v4 -->
+  <script src="//cdn.jsdelivr.net/npm/docsify@4"></script>
+</body>
+</html>