CI / test (pull_request) Successful in 6s
Standalone Django service so callers can mint links and phones get a 302. Closes #1.
10 lines
204 B
Python
10 lines
204 B
Python
"""WSGI config for shortener."""
|
|
|
|
import os
|
|
|
|
from django.core.wsgi import get_wsgi_application
|
|
|
|
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "shortener.settings")
|
|
|
|
application = get_wsgi_application()
|