Skip to content

Commit

Permalink
Reorder app loading
Browse files Browse the repository at this point in the history
  • Loading branch information
jodal committed Dec 29, 2024
1 parent 9615773 commit 1642ace
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions src/comics/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,24 +105,24 @@
"whitenoise.runserver_nostatic", # Before staticfiles
"django.contrib.staticfiles",
]
LOCAL_APPS = [
"comics.core",
"comics.accounts",
"comics.aggregator",
"comics.api",
"comics.browser",
"comics.help",
"comics.status",
]
THIRD_PARTY_APPS = [
"comics.accounts", # Before allauth
"allauth",
"allauth.account",
"invitations", # After allauth
"bootstrapform",
"compressor",
"tastypie",
]
INSTALLED_APPS = DJANGO_APPS + LOCAL_APPS + THIRD_PARTY_APPS
LOCAL_APPS = [
"comics.core",
"comics.aggregator",
"comics.api",
"comics.browser",
"comics.help",
"comics.status",
]
INSTALLED_APPS = DJANGO_APPS + THIRD_PARTY_APPS + LOCAL_APPS


# Middleware
Expand Down

0 comments on commit 1642ace

Please sign in to comment.