mirror of
https://github.com/sissbruecker/linkding.git
synced 2025-08-07 10:58:25 +02:00
14 lines
285 B
Python
14 lines
285 B
Python
"""
|
|
WSGI config for linkding.
|
|
|
|
It exposes the WSGI callable as a module-level variable named ``application``.
|
|
"""
|
|
|
|
import os
|
|
|
|
from django.core.wsgi import get_wsgi_application
|
|
|
|
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "bookmarks.settings")
|
|
|
|
application = get_wsgi_application()
|