diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1c2fa42..1163a6f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -21,7 +21,7 @@ jobs: uses: actions/setup-python@v4 with: python-version: "3.9" - cache: 'poetry' + cache: "poetry" - name: Install deps run: poetry install - name: Run lint check @@ -44,7 +44,7 @@ jobs: uses: actions/setup-python@v4 with: python-version: "${{ matrix.py_version }}" - cache: 'poetry' + cache: "poetry" - name: Install deps run: poetry install - name: Run pytest check diff --git a/README.md b/README.md index 09d5cbc..a7f800e 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,10 @@ [![PyPI](https://img.shields.io/pypi/v/taskiq?style=for-the-badge)](https://pypi.org/project/taskiq/) [![PyPI - Downloads](https://img.shields.io/pypi/dm/taskiq?style=for-the-badge)](https://pypistats.org/packages/taskiq) -# Taskiq +
+ +
+
Taskiq is an asynchronous distributed task queue for python. This project takes inspiration from big projects such as [Celery](https://docs.celeryq.dev) and [Dramatiq](https://dramatiq.io/). diff --git a/docs/.vuepress/public/logo.png b/docs/.vuepress/public/logo.png deleted file mode 100644 index cdf6c06..0000000 Binary files a/docs/.vuepress/public/logo.png and /dev/null differ diff --git a/docs/.vuepress/public/logo.svg b/docs/.vuepress/public/logo.svg new file mode 100644 index 0000000..5570a34 --- /dev/null +++ b/docs/.vuepress/public/logo.svg @@ -0,0 +1 @@ + diff --git a/docs/README.md b/docs/README.md index 7e8fea2..90e2b7e 100644 --- a/docs/README.md +++ b/docs/README.md @@ -1,7 +1,7 @@ --- title: Home home: true -heroImage: logo.png +heroImage: logo.svg heroAlt: logo heroText: Taskiq python actions: diff --git a/imgs/logo.png b/imgs/logo.png new file mode 100644 index 0000000..26bd16a Binary files /dev/null and b/imgs/logo.png differ diff --git a/imgs/logo.svg b/imgs/logo.svg new file mode 100644 index 0000000..7057396 --- /dev/null +++ b/imgs/logo.svg @@ -0,0 +1 @@ + diff --git a/vuepress.config.ts b/vuepress.config.ts index df75692..b803a27 100644 --- a/vuepress.config.ts +++ b/vuepress.config.ts @@ -7,10 +7,10 @@ export default defineUserConfig({ title: "Taskiq", description: 'Distributed task queue with full async support', head: [ - ['meta', { property: 'og:image', content: 'https://taskiq-python.github.io/logo.png' }] + ['meta', { property: 'og:image', content: 'https://taskiq-python.github.io/logo.svg' }] ], theme: hopeTheme({ - logo: "/logo.png", + logo: "/logo.svg", pure: true, backToTop: false, repo: 'taskiq-python/taskiq',