From b76fecc25cb81df6a4898a59a612b247a79589bb Mon Sep 17 00:00:00 2001 From: sairate Date: Sat, 31 Aug 2024 13:58:54 +0800 Subject: [PATCH] Signed-off-by: sairate --- .idea/.gitignore | 8 ++++++ .idea/doc.iml | 10 ++++++++ .idea/inspectionProfiles/Project_Default.xml | 25 +++++++++++++++++++ .../inspectionProfiles/profiles_settings.xml | 6 +++++ .idea/misc.xml | 4 +++ .idea/modules.xml | 8 ++++++ notebook/docs/index.md | 17 +++++++++++++ notebook/mkdocs.yml | 1 + 8 files changed, 79 insertions(+) create mode 100644 .idea/.gitignore create mode 100644 .idea/doc.iml create mode 100644 .idea/inspectionProfiles/Project_Default.xml create mode 100644 .idea/inspectionProfiles/profiles_settings.xml create mode 100644 .idea/misc.xml create mode 100644 .idea/modules.xml create mode 100644 notebook/docs/index.md create mode 100644 notebook/mkdocs.yml diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 00000000..35410cac --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,8 @@ +# 默认忽略的文件 +/shelf/ +/workspace.xml +# 基于编辑器的 HTTP 客户端请求 +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/.idea/doc.iml b/.idea/doc.iml new file mode 100644 index 00000000..a47d466b --- /dev/null +++ b/.idea/doc.iml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/inspectionProfiles/Project_Default.xml b/.idea/inspectionProfiles/Project_Default.xml new file mode 100644 index 00000000..74b70781 --- /dev/null +++ b/.idea/inspectionProfiles/Project_Default.xml @@ -0,0 +1,25 @@ + + + + \ No newline at end of file diff --git a/.idea/inspectionProfiles/profiles_settings.xml b/.idea/inspectionProfiles/profiles_settings.xml new file mode 100644 index 00000000..105ce2da --- /dev/null +++ b/.idea/inspectionProfiles/profiles_settings.xml @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 00000000..290c61ab --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 00000000..989d897f --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/notebook/docs/index.md b/notebook/docs/index.md new file mode 100644 index 00000000..000ea345 --- /dev/null +++ b/notebook/docs/index.md @@ -0,0 +1,17 @@ +# Welcome to MkDocs + +For full documentation visit [mkdocs.org](https://www.mkdocs.org). + +## Commands + +* `mkdocs new [dir-name]` - Create a new project. +* `mkdocs serve` - Start the live-reloading docs server. +* `mkdocs build` - Build the documentation site. +* `mkdocs -h` - Print help message and exit. + +## Project layout + + mkdocs.yml # The configuration file. + docs/ + index.md # The documentation homepage. + ... # Other markdown pages, images and other files. diff --git a/notebook/mkdocs.yml b/notebook/mkdocs.yml new file mode 100644 index 00000000..c97182f5 --- /dev/null +++ b/notebook/mkdocs.yml @@ -0,0 +1 @@ +site_name: My Docs