Merge remote-tracking branch 'origin/master'

This commit is contained in:
raiots 2022-07-26 14:04:05 +08:00
commit 1936734006
8 changed files with 1581 additions and 0 deletions

4
.gitignore vendored
View File

@ -4,3 +4,7 @@
/db.sqlite3 /db.sqlite3
/identifier.sqlite /identifier.sqlite
migrations/ migrations/
node_modules
.temp
.cache

7
docs/.vuepress/client.js Normal file
View File

@ -0,0 +1,7 @@
import { defineClientConfig } from '@vuepress/client'
export default defineClientConfig({
enhance({ app, router, siteData }) {},
setup() {},
rootComponents: [],
})

5
docs/.vuepress/config.js Normal file
View File

@ -0,0 +1,5 @@
module.exports = {
lang: 'zh-CN',
title: 'TasksManager',
description: '超好用的任务分配管理系统',
}

12
docs/README.md Normal file
View File

@ -0,0 +1,12 @@
---
home: true
heroText: TasksManager
tagline: 超好用的任务分配管理工具❤️
actions:
- text: 项目简介
link: /guide/
type: primary
- text: 快速部署
link: /install/
type: secondary
---

6
docs/guide/README.md Normal file
View File

@ -0,0 +1,6 @@
---
sidebar: auto
---
TasksManager 是一个由Django开发的任务分发系统

10
docs/install/README.md Normal file
View File

@ -0,0 +1,10 @@
---
sidebar: auto
---
# 部署
你可以使用两种方式部署 TasksManager这里推荐使用 Docker compose 的方式进行部署。
## Docker 部署

9
package.json Normal file
View File

@ -0,0 +1,9 @@
{
"devDependencies": {
"vuepress": "^2.0.0-beta.49"
},
"scripts": {
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs"
}
}

1528
yarn.lock Normal file

File diff suppressed because it is too large Load Diff