Skip to content

Commit

Permalink
Fix: Failing migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
lordsarcastic committed Jan 24, 2024
1 parent c018604 commit 2540244
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 16 deletions.
2 changes: 1 addition & 1 deletion Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ pillow = "*"
psycopg2-binary = "*"
django-anymail = {extras = ["mailgun"], version = "*"}
pydantic = "*"
drf-yasg = "*"
pydantic-settings = "*"
dj-database-url = "*"
drf-yasg = "*"

[dev-packages]
ruff = "*"
Expand Down
1 change: 1 addition & 0 deletions config/settings/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ class GeneralSettings(BaseSettings):
"anymail",
"corsheaders",
"drf_yasg",
"django_extensions",
]

CUSTOM_APPS = []
Expand Down
15 changes: 0 additions & 15 deletions config/urls.py
Original file line number Diff line number Diff line change
@@ -1,18 +1,3 @@
"""config URL Configuration
The `urlpatterns` list routes URLs to views. For more information please see:
https://docs.djangoproject.com/en/4.1/topics/http/urls/
Examples:
Function views
1. Add an import: from my_app import views
2. Add a URL to urlpatterns: path('', views.home, name='home')
Class-based views
1. Add an import: from other_app.views import Home
2. Add a URL to urlpatterns: path('', Home.as_view(), name='home')
Including another URLconf
1. Import the include() function: from django.urls import include, path
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
"""
from django.contrib import admin
from django.urls import path

Expand Down

0 comments on commit 2540244

Please sign in to comment.