From 603ac10d6eb485c9a95f253a14d4967f4aafbfa3 Mon Sep 17 00:00:00 2001 From: 0livd <0livd@users.noreply.github.com> Date: Wed, 28 Jun 2017 00:04:47 +0200 Subject: Turn the WSGI file into a python module (#240) * Turn the WSGI file into a python module * Update conf files to use the new wsgi module Apache and gunicorn now use the same entrypoint * Update Changelog --- budget/ihatemoney.wsgi | 1 - budget/wsgi.py | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) delete mode 100644 budget/ihatemoney.wsgi create mode 100644 budget/wsgi.py (limited to 'budget') diff --git a/budget/ihatemoney.wsgi b/budget/ihatemoney.wsgi deleted file mode 100644 index 66f7a73..0000000 --- a/budget/ihatemoney.wsgi +++ /dev/null @@ -1 +0,0 @@ -from run import app as application diff --git a/budget/wsgi.py b/budget/wsgi.py new file mode 100644 index 0000000..66f7a73 --- /dev/null +++ b/budget/wsgi.py @@ -0,0 +1 @@ +from run import app as application -- cgit v1.1