Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorflorent <florent@sd-27467.dedibox.fr>2012-04-22 22:04:43 (GMT)
committer florent <florent@sd-27467.dedibox.fr>2012-04-22 22:04:43 (GMT)
commita5a82a4d9533cb6fd0c78aa684a074bac8270742 (patch)
tree22dedb7f81552d406655c138d5615d2f450baa07
parent2c078f470b322a8697c9f5fb304184206340e49d (diff)
add gunicorn dependencyHEADmaster
-rw-r--r--README2
-rw-r--r--setup.py2
-rw-r--r--src/pootle_it/settings.py1
3 files changed, 5 insertions, 0 deletions
diff --git a/README b/README
index e69de29..0374df2 100644
--- a/README
+++ b/README
@@ -0,0 +1,2 @@
+# gunicorn command
+./bin/django run_gunicorn -b 127.0.0.1:8002
diff --git a/setup.py b/setup.py
index a8d2c61..9611ffd 100644
--- a/setup.py
+++ b/setup.py
@@ -18,6 +18,8 @@ setup(name="pootle-it",
"translate-toolkit",
"lxml",
"pootle",
+ # GUNICORN
+ "gunicorn",
],
packages = find_packages('src'),
package_dir = {'': 'src'},
diff --git a/src/pootle_it/settings.py b/src/pootle_it/settings.py
index fb86b2f..be1537c 100644
--- a/src/pootle_it/settings.py
+++ b/src/pootle_it/settings.py
@@ -145,6 +145,7 @@ INSTALLED_APPS = (
'djblets.siteconfig',
'djblets.util',
'contact_form_i18n',
+ 'gunicorn',
)
AUTH_PROFILE_MODULE = "pootle_profile.PootleProfile"