Stub out bookmarks for forgetmetnot django app

This commit is contained in:
2021-02-24 09:00:25 -06:00
parent 735c7f6b80
commit 13fc58121a
14 changed files with 41 additions and 1 deletions

16
forgetmenot/wsgi.py Normal file
View File

@@ -0,0 +1,16 @@
"""
WSGI config for forgetmenot project.
It exposes the WSGI callable as a module-level variable named ``application``.
For more information on this file, see
https://docs.djangoproject.com/en/3.1/howto/deployment/wsgi/
"""
import os
from django.core.wsgi import get_wsgi_application
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'forgetmenot.settings')
application = get_wsgi_application()