Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

OAuth refactor: install cdt_identity app #2734

Open
thekaveman opened this issue Mar 10, 2025 · 0 comments
Open

OAuth refactor: install cdt_identity app #2734

thekaveman opened this issue Mar 10, 2025 · 0 comments
Assignees
Labels
chore Chores and tasks for code cleanup, dev experience, etc.

Comments

@thekaveman
Copy link
Member

Python dependency

To make this refactor simpler, we aren't publishing a django-cdt-identity package to PyPI yet.

For now, we can just install directly from the main branch using the git URL syntax for dependencies:

[project]
name = "benefits"
...
dependencies = [
   ...
   "Django==5.1.7",
+  "django-cdt-identity @ git+https://github.com/Office-of-Digital-Services/django-cdt-identity.git@main",
   ...
]

Django dependency

Install the app in benefits/settings.py:

# Application definition

INSTALLED_APPS = [
    ...
+   "cdt_identity",
    "benefits.core",
    "benefits.enrollment",
    "benefits.eligibility",
    "benefits.oauth",
    "benefits.in_person",
]
@thekaveman thekaveman added the chore Chores and tasks for code cleanup, dev experience, etc. label Mar 10, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
chore Chores and tasks for code cleanup, dev experience, etc.
Projects
Status: Todo
Development

No branches or pull requests

2 participants