Browse Source

Add run-uwsgi command

David Cramer 12 years ago
parent
commit
dffb68a614
1 changed files with 2 additions and 0 deletions
  1. 2 0
      Makefile

+ 2 - 0
Makefile

@@ -83,5 +83,7 @@ lint-js:
 coverage: install-test-requirements
 	py.test --cov=src/sentry --cov-report=html
 
+run-uwsgi:
+	uwsgi --http 127.0.0.1:8000 --need-app --disable-logging --wsgi-file src/sentry/wsgi.py --processes 1 --threads 5
 
 .PHONY: build