feat: added tailwind

This commit is contained in:
2024-11-20 18:09:44 +01:00
parent 14d11cf0b9
commit 3783ec0942
21 changed files with 1698 additions and 10 deletions
+5
View File
@@ -9,6 +9,7 @@ CORS_ORIGIN_ALLOW_ALL = DEBUG
if not DEBUG:
import socket
ALLOWED_HOSTS.append(socket.gethostbyname(socket.gethostname()))
@@ -29,11 +30,13 @@ THIRD_PARTY_APPS = [
"watchman",
"drf_spectacular",
"rest_framework_simplejwt",
"tailwind",
]
PROJECT_APPS = [
"files",
"shop",
"theme",
"tpv",
"users",
]
@@ -213,3 +216,5 @@ SIMPLE_JWT = {
"SLIDING_TOKEN_OBTAIN_SERIALIZER": "rest_framework_simplejwt.serializers.TokenObtainSlidingSerializer",
"SLIDING_TOKEN_REFRESH_SERIALIZER": "rest_framework_simplejwt.serializers.TokenRefreshSlidingSerializer",
}
TAILWIND_APP_NAME = "theme"