From 81301c1c50d2dd24bc8f2b132e5947d95bf0ea9c Mon Sep 17 00:00:00 2001 From: =?utf8?q?Marek=20St=C4=99pniowski?= Date: Wed, 1 Oct 2008 13:18:43 +0200 Subject: [PATCH] Moved wolnelektury.fcgi and wolnelektury.wsgi to deploy subdirectory of project folder. --- wolnelektury.fcgi => wolnelektury/deploy/wolnelektury.fcgi | 4 ++-- wolnelektury.wsgi => wolnelektury/deploy/wolnelektury.wsgi | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) rename wolnelektury.fcgi => wolnelektury/deploy/wolnelektury.fcgi (81%) rename wolnelektury.wsgi => wolnelektury/deploy/wolnelektury.wsgi (81%) diff --git a/wolnelektury.fcgi b/wolnelektury/deploy/wolnelektury.fcgi similarity index 81% rename from wolnelektury.fcgi rename to wolnelektury/deploy/wolnelektury.fcgi index fd41ab24d..ba9fbef3f 100644 --- a/wolnelektury.fcgi +++ b/wolnelektury/deploy/wolnelektury.fcgi @@ -7,8 +7,8 @@ import sys sys.stdout = sys.stderr # Add apps and lib directories to PYTHONPATH -sys.path.insert(0, abspath(join(dirname(__file__), '../apps'))) -sys.path.insert(0, abspath(join(dirname(__file__), '../lib'))) +sys.path.insert(0, abspath(join(dirname(__file__), '../../apps'))) +sys.path.insert(0, abspath(join(dirname(__file__), '../../lib'))) # Emulate manage.py path hacking. sys.path.insert(0, abspath(join(dirname(__file__), "../../"))) diff --git a/wolnelektury.wsgi b/wolnelektury/deploy/wolnelektury.wsgi similarity index 81% rename from wolnelektury.wsgi rename to wolnelektury/deploy/wolnelektury.wsgi index 27327133b..4fead214d 100644 --- a/wolnelektury.wsgi +++ b/wolnelektury/deploy/wolnelektury.wsgi @@ -7,8 +7,8 @@ import sys sys.stdout = sys.stderr # Add apps and lib directories to PYTHONPATH -sys.path.insert(0, abspath(join(dirname(__file__), '../apps'))) -sys.path.insert(0, abspath(join(dirname(__file__), '../lib'))) +sys.path.insert(0, abspath(join(dirname(__file__), '../../apps'))) +sys.path.insert(0, abspath(join(dirname(__file__), '../../lib'))) # Emulate manage.py path hacking. sys.path.insert(0, abspath(join(dirname(__file__), "../../"))) -- 2.20.1