diff options
author | Duda Dornelles <ddornell@thoughtworks.com> | 2014-08-21 12:56:23 -0300 |
---|---|---|
committer | Duda Dornelles <ddornell@thoughtworks.com> | 2014-08-21 12:56:23 -0300 |
commit | 797d8553959cf9f3998eb753f42349f92e2f52fd (patch) | |
tree | 544494a01712b13a2659008d520067a0550790c6 /service | |
parent | 9296ed69e613d5aaa46d0371e4ba2e56aa79fadb (diff) |
daemon to work with new folder structure
Diffstat (limited to 'service')
-rwxr-xr-x | service/user-agent-daemon | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/service/user-agent-daemon b/service/user-agent-daemon index 84493d2d..99841a31 100755 --- a/service/user-agent-daemon +++ b/service/user-agent-daemon @@ -1,5 +1,5 @@ #!/bin/bash -export PYTHONPATH=`pwd`/app:$PYTHONPATH +export PYTHONPATH=`pwd`/pixelated:$PYTHONPATH USER_AGENT_PORT=3333 @@ -9,7 +9,7 @@ function do_stop() { function do_start() { echo "gunicorn pixelated_user_agent:app -b 0.0.0.0:$USER_AGENT_PORT -D -p gunicorn.pid --log-file=gunicorn.log" - gunicorn pixelated_user_agent:app -b 0.0.0.0:$USER_AGENT_PORT -D -p gunicorn.pid --log-file=gunicorn.log + gunicorn user_agent:app -b 0.0.0.0:$USER_AGENT_PORT -D -p gunicorn.pid --log-file=gunicorn.log } case $1 in |