Skip to content

Commit

Permalink
Remove unused apps and added DRF filters.
Browse files Browse the repository at this point in the history
In the afb settings of our API app, we made a revision to our list of installed apps. The unused applications `crispy_forms`, `tailwind`, and `crispy_tailwind` were removed from the list in order to declutter and streamline our app. Meanwhile, we added `rest_framework` and `django_filters`, the latter of which is a dependency of Django Rest Framework. These new inclusions will enhance the functionality and efficiency of our Django project, with `rest_framework` providing a powerful and flexible toolkit for building Web APIs, and `django_filters` promoting filterable data for Django models.

Signed-off-by: delano <[email protected]>
  • Loading branch information
delano committed Nov 4, 2023
1 parent dc4d449 commit 9168590
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions apps/api/afb/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,6 @@
"django.contrib.messages",
"django.contrib.staticfiles",
"django_extensions", # add this for 'python manage.py runserver_plus'
"crispy_forms",
"tailwind",
"crispy_tailwind",
"rest_framework", # add DRF
"django_filters", # add DRF filters
"phonenumber_field",
Expand Down

0 comments on commit 9168590

Please sign in to comment.