mirror of
https://github.com/sissbruecker/linkding
synced 2024-11-22 19:33:05 +00:00
43115fd8f2
* Add basic bookmark notes * Add bookmark list JS to shared bookmarks page * Allow testing through ngrok * Improve CSS * Set notes through API * Improve notes editing * Improve notes icon * Remove transitions for now * Update keyboard shortcut * Add bookmark list tests * Add setting for showing notes permanently * Add test for toggling notes * Update API docs * Allow searching for notes content * Skip test
60 lines
1.3 KiB
Python
60 lines
1.3 KiB
Python
"""
|
|
Development settings for linkding webapp
|
|
"""
|
|
|
|
# Start from development settings
|
|
# noinspection PyUnresolvedReferences
|
|
from .base import *
|
|
|
|
# Turn on debug mode
|
|
DEBUG = True
|
|
# Turn on SASS compilation
|
|
SASS_PROCESSOR_ENABLED = True
|
|
|
|
# Enable debug toolbar
|
|
INSTALLED_APPS.append('debug_toolbar')
|
|
MIDDLEWARE.append('debug_toolbar.middleware.DebugToolbarMiddleware')
|
|
|
|
INTERNAL_IPS = [
|
|
'127.0.0.1',
|
|
]
|
|
|
|
# Allow access through ngrok
|
|
CSRF_TRUSTED_ORIGINS = ['https://*.ngrok-free.app']
|
|
|
|
# Enable debug logging
|
|
LOGGING = {
|
|
'version': 1,
|
|
'disable_existing_loggers': False,
|
|
'formatters': {
|
|
'simple': {
|
|
'format': '{levelname} {asctime} {module}: {message}',
|
|
'style': '{',
|
|
},
|
|
},
|
|
'handlers': {
|
|
'console': {
|
|
'class': 'logging.StreamHandler',
|
|
'formatter': 'simple'
|
|
}
|
|
},
|
|
'root': {
|
|
'handlers': ['console'],
|
|
'level': 'WARNING',
|
|
},
|
|
'loggers': {
|
|
'django.db.backends': {
|
|
'level': 'ERROR', # Set to DEBUG to log all SQL calls
|
|
'handlers': ['console'],
|
|
},
|
|
'bookmarks': { # Log importer debug output
|
|
'level': 'DEBUG',
|
|
'handlers': ['console'],
|
|
'propagate': False,
|
|
}
|
|
}
|
|
}
|
|
|
|
# Import custom settings
|
|
# noinspection PyUnresolvedReferences
|
|
from .custom import *
|