[UPDT] PROJECT: Missing files updated

This commit is contained in:
Horilla
2025-02-14 10:01:48 +05:30
parent 07e9c2331e
commit d453c1d192
95 changed files with 12125 additions and 7542 deletions

View File

@@ -1,12 +1,28 @@
from django.apps import AppConfig
class ProjectConfig(AppConfig):
default_auto_field = "django.db.models.BigAutoField"
name = "project"
def ready(self):
from horilla.horilla_settings import APPS
APPS.append("project")
super().ready()
from django.apps import AppConfig
class ProjectConfig(AppConfig):
default_auto_field = "django.db.models.BigAutoField"
name = "project"
def ready(self):
from django.urls import include, path
from horilla.urls import urlpatterns
urlpatterns.append(
path("project/", include("project.urls")),
)
super().ready()
try:
from django.urls import include, path
from horilla.urls import urlpatterns
urlpatterns.append(
path("project/", include("project.urls")),
)
except:
"""
Models not ready yet
"""