Fixed webui reload problem in dev environment (moved webui.py out of ostack_validator directory)

This commit is contained in:
Maxim Kulkin
2013-10-17 18:40:22 +04:00
parent a4ab1fe233
commit 38ebe77208
2 changed files with 3 additions and 3 deletions

View File

@@ -11,7 +11,7 @@ end
bash 'Run application' do
code <<-EOS
echo "webui: gunicorn --log-level debug ostack_validator.webui:app --bind 0.0.0.0:8000" > ProcfileHonchoLocal
echo "webui: python webui.py" > ProcfileHonchoLocal
echo "worker: celery worker --app=ostack_validator.celery:app" >> ProcfileHonchoLocal
if ! tmux has-session -t dev; then
tmux new-session -d -s dev "honcho -f ProcfileHonchoLocal start"