mirror of
				https://github.com/sissbruecker/linkding.git
				synced 2025-11-04 04:54:09 +01: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()
 |