feat: New Module ITOps

ref: #694 #567
This commit is contained in:
2025-03-23 10:24:49 +09:30
parent 08fd187692
commit ac78032cca
4 changed files with 8 additions and 1 deletions

View File

@ -138,7 +138,8 @@ INSTALLED_APPS = [
'config_management.apps.ConfigManagementConfig',
'project_management.apps.ProjectManagementConfig',
'devops.apps.DevOpsConfig',
'centurion_feature_flag',
'centurion_feature_flag.apps.CenturionFeatureFlagConfig',
'itops.apps.ItOpsConfig',
]
MIDDLEWARE = [

0
app/itops/__init__.py Normal file
View File

6
app/itops/apps.py Normal file
View File

@ -0,0 +1,6 @@
from django.apps import AppConfig
class ItOpsConfig(AppConfig):
default_auto_field = 'django.db.models.BigAutoField'
name = 'itops'

View File