1
1

rename 'floplanner' to 'financeproject' and change other occurences of 'flo'

This commit is contained in:
2020-03-24 12:14:38 +01:00
parent b517ce8307
commit 42528f0799
8 changed files with 13 additions and 13 deletions

16
financeproject/wsgi.py Normal file
View File

@@ -0,0 +1,16 @@
"""
WSGI config for financeplanner 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/2.2/howto/deployment/wsgi/
"""
import os
from django.core.wsgi import get_wsgi_application
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'financeproject.settings')
application = get_wsgi_application()