From 7d8cd61a245066d9b49372cc86cd513a82cebe77 Mon Sep 17 00:00:00 2001 From: Oliver Andrich Date: Wed, 9 Oct 2024 22:18:45 +0200 Subject: [PATCH] django-tailwind-cli.andrich.me -> django-tailwind-cli.rtfd.io --- README.md | 4 ++-- docs/CNAME | 1 - pyproject.toml | 4 ++-- src/django_tailwind_cli/management/commands/tailwind.py | 2 +- 4 files changed, 5 insertions(+), 6 deletions(-) delete mode 100644 docs/CNAME diff --git a/README.md b/README.md index b416fe3..582df74 100644 --- a/README.md +++ b/README.md @@ -57,7 +57,7 @@ The goal of this library is to provided the simplest possible Tailwind integrati Enjoy! -Checkout the detailed [installation guide](https://django-tailwind-cli.andrich.me/installation/) if you want to activate browser reload or the `runserver_plus` management command known from `django-extensions`. +Checkout the detailed [installation guide](https://django-tailwind-cli.rtfd.io.me/installation/) if you want to activate browser reload or the `runserver_plus` management command known from `django-extensions`. ## Features @@ -77,7 +77,7 @@ Python 3.9 or newer with Django >= 4.2. ## Documentation -The documentation can be found at [https://django-tailwind-cli.andrich.me/](https://django-tailwind-cli.andrich.me/) +The documentation can be found at [https://django-tailwind-cli.rtfd.io/](https://django-tailwind-cli.rtfd.io/) ## Contributing diff --git a/docs/CNAME b/docs/CNAME deleted file mode 100644 index 192967b..0000000 --- a/docs/CNAME +++ /dev/null @@ -1 +0,0 @@ -django-tailwind-cli.andrich.me diff --git a/pyproject.toml b/pyproject.toml index cdc76ac..bfa7d8a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -35,8 +35,8 @@ dependencies = [ django-extensions = ["django-extensions>=3.2", "werkzeug>=3.0"] [project.urls] -Home = "https://django-tailwind-cli.andrich.me/" -Documentation = "https://django-tailwind-cli.andrich.me/" +Home = "https://django-tailwind-cli.rtfd.io.me/" +Documentation = "https://django-tailwind-cli.rtfd.io.me/" Repository = "https://github.com/oliverandrich/django-tailwind-cli" [tool.uv] diff --git a/src/django_tailwind_cli/management/commands/tailwind.py b/src/django_tailwind_cli/management/commands/tailwind.py index 4d5c08f..769786b 100644 --- a/src/django_tailwind_cli/management/commands/tailwind.py +++ b/src/django_tailwind_cli/management/commands/tailwind.py @@ -201,7 +201,7 @@ def runserver_plus( ): msg = ( "Missing dependencies. Follow the instructions found on " - "https://django-tailwind-cli.andrich.me/installation/." + "https://django-tailwind-cli.rtfd.io.me/installation/." ) raise CommandError(msg)