diff --git a/Changelog.rst b/Changelog.rst index 6d71d541..54c17a41 100644 --- a/Changelog.rst +++ b/Changelog.rst @@ -4,4 +4,4 @@ Change history ================ -TBD +No changes yet. diff --git a/docs/_templates/sidebardonations.html b/docs/_templates/sidebardonations.html new file mode 100644 index 00000000..6e50b444 --- /dev/null +++ b/docs/_templates/sidebardonations.html @@ -0,0 +1,9 @@ + +
diff --git a/docs/conf.py b/docs/conf.py index 705eee0c..bd18ae92 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -5,28 +5,25 @@ "pytest_celery", __file__, project="Pytest Celery", - version_dev="2.0", + version_dev="1.1", version_stable="1.0", - canonical_url="https://docs.pytest-celery.dev", # Update with your documentation URL - webdomain="pytest-celery.dev", # Update with your domain + canonical_url="https://pytest-celery.readthedocs.io/", + webdomain="pytest-celery.readthedocs.io", github_project="celery/pytest-celery", author="Tomer Nosrati", author_name="Tomer Nosrati", - copyright="2023", + copyright="2024", publisher="Celery Project", - # html_logo='images/logo.png', - # html_favicon='images/favicon.ico', + html_logo="images/celery_512.png", + html_favicon="images/favicon.ico", + html_prepend_sidebars=["sidebardonations.html"], extra_extensions=[ "sphinx_click", "sphinx.ext.napoleon", - # ... other extensions ... + "celery.contrib.sphinx", + ], + apicheck_ignore_modules=[ + "celery.contrib", ], - extra_intersphinx_mapping={ - # ... other intersphinx mappings ... - }, - apicheck_ignore_modules=[], - linkcheck_ignore=[r"^http://localhost"], ) ) - -settings = {} diff --git a/docs/images/celery_512.png b/docs/images/celery_512.png new file mode 100644 index 00000000..25163151 Binary files /dev/null and b/docs/images/celery_512.png differ diff --git a/docs/images/favicon.ico b/docs/images/favicon.ico new file mode 100644 index 00000000..163234f2 Binary files /dev/null and b/docs/images/favicon.ico differ diff --git a/docs/index.rst b/docs/index.rst index 0bac436e..55bd179b 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -1,27 +1,30 @@ =================================================== - pytest-celery - Testing Infrastructure for Celery + pytest-celery - Official pytest plugin for Celery =================================================== -TBD +Welcome to pytest-celery, the official pytest plugin for Celery. -pytest-celery has a growing community of users and contributors. Join us -in making pytest-celery even better! +Pytest Celery is Open Source and licensed under the `BSD License`_. -pytest-celery is Open Source and licensed under the BSD License. +.. _`BSD License`: http://www.opensource.org/licenses/BSD-3-Clause -Supporting pytest-celery -======================== +Donations +========= -Your contributions support the continued development of pytest-celery. +This project relies on your generous donations. -If you find pytest-celery valuable, please consider supporting us to ensure its -future growth and maintenance. +If you are using Pytest Celery to test a commercial product, please consider becoming our `backer`_ or our `sponsor`_ to ensure Pytest Celery's future. + +.. _`backer`: https://opencollective.com/celery#backer +.. _`sponsor`: https://opencollective.com/celery#sponsor Getting Started =============== -- Begin your journey with pytest-celery by following the :ref:`getting-started`. -- For common questions, you might want to check out the :ref:`faq`. +- If you're new to Celery you can get started by following + the :ref:`first-steps` tutorial. + +- You can also check out the :ref:`FAQ