11 lines
169 B
Python
11 lines
169 B
Python
from config.env import env
|
|
|
|
APPS = [
|
|
'django_core',
|
|
"core.apps.accounts.apps.AccountsConfig",
|
|
]
|
|
|
|
if env.bool("SILK_ENABLED", False):
|
|
APPS += [
|
|
|
|
] |