Skip to content

Commit

Permalink
Add django-flags dependancy
Browse files Browse the repository at this point in the history
  • Loading branch information
zkayyali812 committed Nov 11, 2024
1 parent 3b2dc46 commit ad92a5d
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 0 deletions.
16 changes: 16 additions & 0 deletions galaxy_ng/app/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@
'ansible_base.rbac',
'social_django',
'dynaconf_merge_unique',
'flags',
]

LOGGING = {
Expand All @@ -131,6 +132,21 @@
"dynaconf_merge": True,
}

FLAGS = {}

TEMPLATES = [
{
"BACKEND": "django.template.backends.django.DjangoTemplates",
"DIRS": [],
"APP_DIRS": True,
"OPTIONS": {
"context_processors": [
"django.template.context_processors.request",
],
},
},
]


AUTH_USER_MODEL = 'galaxy.User'

Expand Down
3 changes: 3 additions & 0 deletions requirements/requirements.common.txt
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ django==4.2.14
# django-auth-ldap
# django-crum
# django-filter
# django-flags
# django-guid
# django-import-export
# django-lifecycle
Expand All @@ -113,6 +114,8 @@ django-crum==0.7.9
# galaxy-ng (setup.py)
django-filter==23.5
# via pulpcore
django-flags==5.0.13
# via galaxy-ng (setup.py)
django-guid==3.4.0
# via pulpcore
django-import-export==3.3.9
Expand Down
3 changes: 3 additions & 0 deletions requirements/requirements.insights.txt
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,7 @@ django==4.2.14
# django-auth-ldap
# django-crum
# django-filter
# django-flags
# django-guid
# django-import-export
# django-lifecycle
Expand All @@ -127,6 +128,8 @@ django-crum==0.7.9
# galaxy-ng (setup.py)
django-filter==23.5
# via pulpcore
django-flags==5.0.13
# via galaxy-ng (setup.py)
django-guid==3.4.0
# via pulpcore
django-import-export==3.3.9
Expand Down
3 changes: 3 additions & 0 deletions requirements/requirements.standalone.txt
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ django==4.2.14
# django-auth-ldap
# django-crum
# django-filter
# django-flags
# django-guid
# django-import-export
# django-lifecycle
Expand All @@ -113,6 +114,8 @@ django-crum==0.7.9
# galaxy-ng (setup.py)
django-filter==23.5
# via pulpcore
django-flags==5.0.13
# via galaxy-ng (setup.py)
django-guid==3.4.0
# via pulpcore
django-import-export==3.3.9
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ def run(self):
"marshmallow<4.0.0,>=3.6.1",
"django-picklefield<4.0.0,>=3.0.1",
"django-ipware<4.0.0,>=3.0.0",
"django-flags",
]


Expand Down

0 comments on commit ad92a5d

Please sign in to comment.