[ADD] Alliance Auth Framework base app

This commit is contained in:
Peter Pfeufer 2023-11-03 17:35:20 +01:00
parent 8b7e57494c
commit 77c126ea2f
No known key found for this signature in database
GPG Key ID: 6051D2C6AD4EBC27
3 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,3 @@
"""
Alliance Auth Framework
"""

View File

@ -0,0 +1,14 @@
"""
Framework App Config
"""
from django.apps import AppConfig
class FrameworkConfig(AppConfig):
"""
Framework App Config
"""
name = "allianceauth.framework"
label = "framework"

View File

@ -25,6 +25,7 @@ INSTALLED_APPS = [
'django_bootstrap5', # https://github.com/zostera/django-bootstrap5
'sortedm2m',
'esi',
'allianceauth.framework',
'allianceauth.authentication',
'allianceauth.services',
'allianceauth.eveonline',