[ADD] PROJECT: Project management module for Horilla (beta)

This commit is contained in:
Horilla
2025-02-13 17:15:29 +05:30
parent 0913ff131a
commit 509aceeacd
73 changed files with 9020 additions and 0 deletions

12
project/apps.py Normal file
View File

@@ -0,0 +1,12 @@
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()