Skip to content

Updated docs a bit. #432

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Mar 25, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 7 additions & 8 deletions docs/.vuepress/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,24 +31,23 @@ export default defineUserConfig({

pure: true,

markdown: {
tabs: true,
mermaid: true
},

plugins: {
readingTime: false,
copyCode: {
showInMobile: true,
},

mdEnhance: {
tabs: true,
mermaid: true,
},

sitemap: {
changefreq: "daily",
sitemapFilename: "sitemap.xml",
},
searchPro: {
indexContent: true,
autoSuggestions: false,
search: {
maxSuggestions: 10,
}
},
})
Expand Down
1 change: 1 addition & 0 deletions docs/.vuepress/styles/config.scss
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
$code-dark-theme: dracula;
$code-light-theme: one-light;
$theme-color: #960018;
4 changes: 4 additions & 0 deletions docs/.vuepress/styles/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@
}
}

.vp-hero-title {
font-size: 3rem;
}

.vp-actions {
align-items: flex-end;
}
1 change: 0 additions & 1 deletion docs/.vuepress/styles/palette.scss

This file was deleted.

25 changes: 14 additions & 11 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,17 +21,20 @@ head:
- - meta
- name: "yandex-verification"
content: "9b105f7c58cbc920"
features:
- title: Production ready
details: Taskiq has proven that it can run in heavy production systems with high load.
- title: Fully asynchronous
details: Taskiq can run both sync and async functions. You don't have to worry about it.
- title: Easily extensible
details: Taskiq has a lot of replaceable components. It's super easy to implement
your own broker or middleware.
- title: Strongly typed
details: Taskiq provides correct autocompletion for most of its functionality.
footer: MIT Licensed | Copyright© 2022-2023
highlights:
- features:
- title: Production ready
details: Taskiq has proven that it can run in heavy production systems with high load.
- title: Fully asynchronous
details: Taskiq can run both sync and async functions. You don't have to worry about it.
- title: Easily extensible
details: Taskiq has a lot of replaceable components. It's super easy to implement
your own broker or middleware.
- title: Strongly typed
details: Taskiq provides correct autocompletion for most of its functionality.

copyright: false
footer: MIT Licensed | Copyright© 2022-present
---

## What is taskiq in a nutshell
Expand Down
16 changes: 9 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,14 @@
},
"packageManager": "pnpm@7.22.0",
"devDependencies": {
"@vuepress/bundler-vite": "2.0.0-rc.9",
"mermaid": "^10.8.0",
"sass-loader": "^14.1.0",
"vue": "^3.4.15",
"vuepress": "2.0.0-rc.9",
"vuepress-plugin-search-pro": "2.0.0-rc.36",
"vuepress-theme-hope": "2.0.0-rc.36"
"@vuepress/bundler-vite": "2.0.0-rc.20",
"@vuepress/plugin-search": "2.0.0-rc.87",
"markdown-it": "14.1.0",
"mermaid": "11.5.0",
"sass-embedded": "^1.86.0",
"sass-loader": "16.0.5",
"vue": "3.5.13",
"vuepress": "2.0.0-rc.20",
"vuepress-theme-hope": "2.0.0-rc.75"
}
}
Loading