1
0
Fork 0
mirror of synced 2024-08-24 06:21:16 +12:00
ArchiveBox/archivebox/plugins/defaults/settings.py
2024-01-24 00:07:07 -08:00

12 lines
No EOL
320 B
Python

from django.conf import settings
def register_plugin_settings(settings=settings, name='defaults'):
settings.STATICFILES_DIRS += [
str(Path(PACKAGE_DIR) / f'plugins/{name}/static'),
]
settings.TEMPLATE_DIRS += [
str(Path(PACKAGE_DIR) / f'plugins/{name}/templates'),
]
print('REGISTERED PLUGIN SETTINGS', name)