Django-oscar をダウンロードしてインストールし (サンドボックスを作成)、runserver は正常に動作します
展開用
latest.wsgi ファイルをサンドボックス フォルダーにコピーし、名前を wsgi.py に変更します
編集もしてます
# Project root
root = '/home/test/oscaruni/django-oscar-releases-0.7/sites/sandbox'
sys.path.insert(0, root)
# Packages from virtualenv
activate_this = '/home/test/oscaruni/django-oscar-releases-0.7/oscar/bin/activate_this.py'
execfile(activate_this, dict(__file__=activate_this))
それから
(oscar)test@debian:~/oscaruni/django-oscar-releases-0.7/sites/sandbox$ gunicorn wsgi:application --bind 127.0.0.1:8001
コマンドラインに点滅カーソルが残る
サンドボックス django-oscar で動作するように gunicorn を構成するにはどうすればよいですか?