Fixes #1622 - split the api into 4 apps: core, history, schedule, storage - exploded the settings into testing/prod
7 lines
194 B
Python
7 lines
194 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class CoreConfig(AppConfig):
|
|
default_auto_field = "django.db.models.BigAutoField"
|
|
name = "libretime_api.core"
|
|
verbose_name = "LibreTime Core API"
|