Re: deploying django on heroku

2014-09-08 Thread ngangsia akumbo
i still dont get it bro

On Sunday, September 7, 2014 10:04:51 PM UTC+1, Kevin Ndung'u wrote:
>
> As it says, just run those commands, setting your username and email, to 
> set your git identity (Username and Email address) which is required for 
> commits.
>
> On Saturday, September 6, 2014 1:21:09 PM UTC+3, ngangsia akumbo wrote:
>>
>> i have another error
>>
>> yems python-getting-started # git commit -m "Demo"
>>
>> *** Please tell me who you are.
>>
>> Run
>>
>>   git config --global user.email "y...@example.com"
>>   git config --global user.name "Your Name"
>>
>> to set your account's default identity.
>> Omit --global to set the identity only in this repository.
>>
>> fatal: unable to auto-detect email address (got 'root@yems.(none)')
>>
>>
>> On Friday, September 5, 2014 4:10:59 PM UTC+1, Koed00 wrote:
>>>
>>> Looks like Gunicorn can't find your app module hellodjango.wsgi
>>> Did you make a wsgi.py in your app folder as described in the Heroku 
>>> docs?
>>>
>>> On Friday, September 5, 2014 12:19:25 PM UTC+2, ngangsia akumbo wrote:

 i had a problem trying to deply django on heroku

 yems bphotel # foreman start
 11:13:37 web.1  | started with pid 9269
 11:13:37 web.1  | [2014-09-05 11:13:37 +] [9269] [INFO] Starting 
 gunicorn 19.1.1
 11:13:37 web.1  | [2014-09-05 11:13:37 +] [9269] [INFO] Listening 
 at: http://0.0.0.0:5000 (9269)
 11:13:37 web.1  | [2014-09-05 11:13:37 +] [9269] [INFO] Using 
 worker: sync
 11:13:37 web.1  | [2014-09-05 11:13:37 +] [9276] [INFO] Booting 
 worker with pid: 9276
 11:13:37 web.1  | [2014-09-05 11:13:37 +] [9276] [ERROR] Exception 
 in worker process:
 11:13:37 web.1  | Traceback (most recent call last):
 11:13:37 web.1  |   File 
 "/usr/local/lib/python2.7/dist-packages/gunicorn/arbiter.py", line 507, in 
 spawn_worker
 11:13:37 web.1  | worker.init_process()
 11:13:37 web.1  |   File 
 "/usr/local/lib/python2.7/dist-packages/gunicorn/workers/base.py", line 
 114, in init_process
 11:13:37 web.1  | self.wsgi = self.app.wsgi()
 11:13:37 web.1  |   File 
 "/usr/local/lib/python2.7/dist-packages/gunicorn/app/base.py", line 66, in 
 wsgi
 11:13:37 web.1  | self.callable = self.load()
 11:13:37 web.1  |   File 
 "/usr/local/lib/python2.7/dist-packages/gunicorn/app/wsgiapp.py", line 65, 
 in load
 11:13:37 web.1  | return self.load_wsgiapp()
 11:13:37 web.1  |   File 
 "/usr/local/lib/python2.7/dist-packages/gunicorn/app/wsgiapp.py", line 52, 
 in load_wsgiapp
 11:13:37 web.1  | return util.import_app(self.app_uri)
 11:13:37 web.1  |   File 
 "/usr/local/lib/python2.7/dist-packages/gunicorn/util.py", line 356, in 
 import_app
 11:13:37 web.1  | __import__(module)
 11:13:37 web.1  | ImportError: No module named hellodjango.wsgi
 11:13:37 web.1  | Traceback (most recent call last):
 11:13:37 web.1  |   File 
 "/usr/local/lib/python2.7/dist-packages/gunicorn/arbiter.py", line 507, in 
 spawn_worker
 11:13:37 web.1  | worker.init_process()
 11:13:37 web.1  |   File 
 "/usr/local/lib/python2.7/dist-packages/gunicorn/workers/base.py", line 
 114, in init_process
 11:13:37 web.1  | self.wsgi = self.app.wsgi()
 11:13:37 web.1  |   File 
 "/usr/local/lib/python2.7/dist-packages/gunicorn/app/base.py", line 66, in 
 wsgi
 11:13:37 web.1  | self.callable = self.load()
 11:13:37 web.1  |   File 
 "/usr/local/lib/python2.7/dist-packages/gunicorn/app/wsgiapp.py", line 65, 
 in load
 11:13:37 web.1  | return self.load_wsgiapp()
 11:13:37 web.1  |   File 
 "/usr/local/lib/python2.7/dist-packages/gunicorn/app/wsgiapp.py", line 52, 
 in load_wsgiapp
 11:13:37 web.1  | return util.import_app(self.app_uri)
 11:13:37 web.1  |   File 
 "/usr/local/lib/python2.7/dist-packages/gunicorn/util.py", line 356, in 
 import_app
 11:13:37 web.1  | __import__(module)
 11:13:37 web.1  | ImportError: No module named hellodjango.wsgi
 11:13:37 web.1  | [2014-09-05 11:13:37 +] [9276] [INFO] Worker 
 exiting (pid: 9276)
 11:13:37 web.1  | Traceback (most recent call last):
 11:13:37 web.1  |   File "/usr/local/bin/gunicorn", line 11, in 
 11:13:37 web.1  | sys.exit(run())
 11:13:37 web.1  |   File 
 "/usr/local/lib/python2.7/dist-packages/gunicorn/app/wsgiapp.py", line 74, 
 in run
 11:13:37 web.1  | WSGIApplication("%(prog)s [OPTIONS] 
 [APP_MODULE]").run()
 11:13:37 web.1  |   File 
 "/usr/local/lib/python2.7/dist-packages/gunicorn/app/base.py", line 185, 
 in 
 run
 11:13:37 web.1  | super(Application, self).run()
 11:13:37 web.1  |   File 
 "/usr/local/lib/python2.7/dist-packages/gunicorn/app/base.py", line 71, in 
 run
 11:13:37 web.1  | Arbiter(self).run()
 11:13:37 web.1 

Re: deploying django on heroku

2014-09-07 Thread Kevin Ndung'u
As it says, just run those commands, setting your username and email, to 
set your git identity (Username and Email address) which is required for 
commits.

On Saturday, September 6, 2014 1:21:09 PM UTC+3, ngangsia akumbo wrote:
>
> i have another error
>
> yems python-getting-started # git commit -m "Demo"
>
> *** Please tell me who you are.
>
> Run
>
>   git config --global user.email "y...@example.com "
>   git config --global user.name "Your Name"
>
> to set your account's default identity.
> Omit --global to set the identity only in this repository.
>
> fatal: unable to auto-detect email address (got 'root@yems.(none)')
>
>
> On Friday, September 5, 2014 4:10:59 PM UTC+1, Koed00 wrote:
>>
>> Looks like Gunicorn can't find your app module hellodjango.wsgi
>> Did you make a wsgi.py in your app folder as described in the Heroku docs?
>>
>> On Friday, September 5, 2014 12:19:25 PM UTC+2, ngangsia akumbo wrote:
>>>
>>> i had a problem trying to deply django on heroku
>>>
>>> yems bphotel # foreman start
>>> 11:13:37 web.1  | started with pid 9269
>>> 11:13:37 web.1  | [2014-09-05 11:13:37 +] [9269] [INFO] Starting 
>>> gunicorn 19.1.1
>>> 11:13:37 web.1  | [2014-09-05 11:13:37 +] [9269] [INFO] Listening 
>>> at: http://0.0.0.0:5000 (9269)
>>> 11:13:37 web.1  | [2014-09-05 11:13:37 +] [9269] [INFO] Using 
>>> worker: sync
>>> 11:13:37 web.1  | [2014-09-05 11:13:37 +] [9276] [INFO] Booting 
>>> worker with pid: 9276
>>> 11:13:37 web.1  | [2014-09-05 11:13:37 +] [9276] [ERROR] Exception 
>>> in worker process:
>>> 11:13:37 web.1  | Traceback (most recent call last):
>>> 11:13:37 web.1  |   File 
>>> "/usr/local/lib/python2.7/dist-packages/gunicorn/arbiter.py", line 507, in 
>>> spawn_worker
>>> 11:13:37 web.1  | worker.init_process()
>>> 11:13:37 web.1  |   File 
>>> "/usr/local/lib/python2.7/dist-packages/gunicorn/workers/base.py", line 
>>> 114, in init_process
>>> 11:13:37 web.1  | self.wsgi = self.app.wsgi()
>>> 11:13:37 web.1  |   File 
>>> "/usr/local/lib/python2.7/dist-packages/gunicorn/app/base.py", line 66, in 
>>> wsgi
>>> 11:13:37 web.1  | self.callable = self.load()
>>> 11:13:37 web.1  |   File 
>>> "/usr/local/lib/python2.7/dist-packages/gunicorn/app/wsgiapp.py", line 65, 
>>> in load
>>> 11:13:37 web.1  | return self.load_wsgiapp()
>>> 11:13:37 web.1  |   File 
>>> "/usr/local/lib/python2.7/dist-packages/gunicorn/app/wsgiapp.py", line 52, 
>>> in load_wsgiapp
>>> 11:13:37 web.1  | return util.import_app(self.app_uri)
>>> 11:13:37 web.1  |   File 
>>> "/usr/local/lib/python2.7/dist-packages/gunicorn/util.py", line 356, in 
>>> import_app
>>> 11:13:37 web.1  | __import__(module)
>>> 11:13:37 web.1  | ImportError: No module named hellodjango.wsgi
>>> 11:13:37 web.1  | Traceback (most recent call last):
>>> 11:13:37 web.1  |   File 
>>> "/usr/local/lib/python2.7/dist-packages/gunicorn/arbiter.py", line 507, in 
>>> spawn_worker
>>> 11:13:37 web.1  | worker.init_process()
>>> 11:13:37 web.1  |   File 
>>> "/usr/local/lib/python2.7/dist-packages/gunicorn/workers/base.py", line 
>>> 114, in init_process
>>> 11:13:37 web.1  | self.wsgi = self.app.wsgi()
>>> 11:13:37 web.1  |   File 
>>> "/usr/local/lib/python2.7/dist-packages/gunicorn/app/base.py", line 66, in 
>>> wsgi
>>> 11:13:37 web.1  | self.callable = self.load()
>>> 11:13:37 web.1  |   File 
>>> "/usr/local/lib/python2.7/dist-packages/gunicorn/app/wsgiapp.py", line 65, 
>>> in load
>>> 11:13:37 web.1  | return self.load_wsgiapp()
>>> 11:13:37 web.1  |   File 
>>> "/usr/local/lib/python2.7/dist-packages/gunicorn/app/wsgiapp.py", line 52, 
>>> in load_wsgiapp
>>> 11:13:37 web.1  | return util.import_app(self.app_uri)
>>> 11:13:37 web.1  |   File 
>>> "/usr/local/lib/python2.7/dist-packages/gunicorn/util.py", line 356, in 
>>> import_app
>>> 11:13:37 web.1  | __import__(module)
>>> 11:13:37 web.1  | ImportError: No module named hellodjango.wsgi
>>> 11:13:37 web.1  | [2014-09-05 11:13:37 +] [9276] [INFO] Worker 
>>> exiting (pid: 9276)
>>> 11:13:37 web.1  | Traceback (most recent call last):
>>> 11:13:37 web.1  |   File "/usr/local/bin/gunicorn", line 11, in 
>>> 11:13:37 web.1  | sys.exit(run())
>>> 11:13:37 web.1  |   File 
>>> "/usr/local/lib/python2.7/dist-packages/gunicorn/app/wsgiapp.py", line 74, 
>>> in run
>>> 11:13:37 web.1  | WSGIApplication("%(prog)s [OPTIONS] 
>>> [APP_MODULE]").run()
>>> 11:13:37 web.1  |   File 
>>> "/usr/local/lib/python2.7/dist-packages/gunicorn/app/base.py", line 185, in 
>>> run
>>> 11:13:37 web.1  | super(Application, self).run()
>>> 11:13:37 web.1  |   File 
>>> "/usr/local/lib/python2.7/dist-packages/gunicorn/app/base.py", line 71, in 
>>> run
>>> 11:13:37 web.1  | Arbiter(self).run()
>>> 11:13:37 web.1  |   File 
>>> "/usr/local/lib/python2.7/dist-packages/gunicorn/arbiter.py", line 169, in 
>>> run
>>> 11:13:37 web.1  | self.manage_workers()
>>> 11:13:37 web.1  |   File 
>>> 

Re: deploying django on heroku

2014-09-06 Thread ngangsia akumbo
i have another error

yems python-getting-started # git commit -m "Demo"

*** Please tell me who you are.

Run

  git config --global user.email "y...@example.com"
  git config --global user.name "Your Name"

to set your account's default identity.
Omit --global to set the identity only in this repository.

fatal: unable to auto-detect email address (got 'root@yems.(none)')


On Friday, September 5, 2014 4:10:59 PM UTC+1, Koed00 wrote:
>
> Looks like Gunicorn can't find your app module hellodjango.wsgi
> Did you make a wsgi.py in your app folder as described in the Heroku docs?
>
> On Friday, September 5, 2014 12:19:25 PM UTC+2, ngangsia akumbo wrote:
>>
>> i had a problem trying to deply django on heroku
>>
>> yems bphotel # foreman start
>> 11:13:37 web.1  | started with pid 9269
>> 11:13:37 web.1  | [2014-09-05 11:13:37 +] [9269] [INFO] Starting 
>> gunicorn 19.1.1
>> 11:13:37 web.1  | [2014-09-05 11:13:37 +] [9269] [INFO] Listening at: 
>> http://0.0.0.0:5000 (9269)
>> 11:13:37 web.1  | [2014-09-05 11:13:37 +] [9269] [INFO] Using worker: 
>> sync
>> 11:13:37 web.1  | [2014-09-05 11:13:37 +] [9276] [INFO] Booting 
>> worker with pid: 9276
>> 11:13:37 web.1  | [2014-09-05 11:13:37 +] [9276] [ERROR] Exception in 
>> worker process:
>> 11:13:37 web.1  | Traceback (most recent call last):
>> 11:13:37 web.1  |   File 
>> "/usr/local/lib/python2.7/dist-packages/gunicorn/arbiter.py", line 507, in 
>> spawn_worker
>> 11:13:37 web.1  | worker.init_process()
>> 11:13:37 web.1  |   File 
>> "/usr/local/lib/python2.7/dist-packages/gunicorn/workers/base.py", line 
>> 114, in init_process
>> 11:13:37 web.1  | self.wsgi = self.app.wsgi()
>> 11:13:37 web.1  |   File 
>> "/usr/local/lib/python2.7/dist-packages/gunicorn/app/base.py", line 66, in 
>> wsgi
>> 11:13:37 web.1  | self.callable = self.load()
>> 11:13:37 web.1  |   File 
>> "/usr/local/lib/python2.7/dist-packages/gunicorn/app/wsgiapp.py", line 65, 
>> in load
>> 11:13:37 web.1  | return self.load_wsgiapp()
>> 11:13:37 web.1  |   File 
>> "/usr/local/lib/python2.7/dist-packages/gunicorn/app/wsgiapp.py", line 52, 
>> in load_wsgiapp
>> 11:13:37 web.1  | return util.import_app(self.app_uri)
>> 11:13:37 web.1  |   File 
>> "/usr/local/lib/python2.7/dist-packages/gunicorn/util.py", line 356, in 
>> import_app
>> 11:13:37 web.1  | __import__(module)
>> 11:13:37 web.1  | ImportError: No module named hellodjango.wsgi
>> 11:13:37 web.1  | Traceback (most recent call last):
>> 11:13:37 web.1  |   File 
>> "/usr/local/lib/python2.7/dist-packages/gunicorn/arbiter.py", line 507, in 
>> spawn_worker
>> 11:13:37 web.1  | worker.init_process()
>> 11:13:37 web.1  |   File 
>> "/usr/local/lib/python2.7/dist-packages/gunicorn/workers/base.py", line 
>> 114, in init_process
>> 11:13:37 web.1  | self.wsgi = self.app.wsgi()
>> 11:13:37 web.1  |   File 
>> "/usr/local/lib/python2.7/dist-packages/gunicorn/app/base.py", line 66, in 
>> wsgi
>> 11:13:37 web.1  | self.callable = self.load()
>> 11:13:37 web.1  |   File 
>> "/usr/local/lib/python2.7/dist-packages/gunicorn/app/wsgiapp.py", line 65, 
>> in load
>> 11:13:37 web.1  | return self.load_wsgiapp()
>> 11:13:37 web.1  |   File 
>> "/usr/local/lib/python2.7/dist-packages/gunicorn/app/wsgiapp.py", line 52, 
>> in load_wsgiapp
>> 11:13:37 web.1  | return util.import_app(self.app_uri)
>> 11:13:37 web.1  |   File 
>> "/usr/local/lib/python2.7/dist-packages/gunicorn/util.py", line 356, in 
>> import_app
>> 11:13:37 web.1  | __import__(module)
>> 11:13:37 web.1  | ImportError: No module named hellodjango.wsgi
>> 11:13:37 web.1  | [2014-09-05 11:13:37 +] [9276] [INFO] Worker 
>> exiting (pid: 9276)
>> 11:13:37 web.1  | Traceback (most recent call last):
>> 11:13:37 web.1  |   File "/usr/local/bin/gunicorn", line 11, in 
>> 11:13:37 web.1  | sys.exit(run())
>> 11:13:37 web.1  |   File 
>> "/usr/local/lib/python2.7/dist-packages/gunicorn/app/wsgiapp.py", line 74, 
>> in run
>> 11:13:37 web.1  | WSGIApplication("%(prog)s [OPTIONS] 
>> [APP_MODULE]").run()
>> 11:13:37 web.1  |   File 
>> "/usr/local/lib/python2.7/dist-packages/gunicorn/app/base.py", line 185, in 
>> run
>> 11:13:37 web.1  | super(Application, self).run()
>> 11:13:37 web.1  |   File 
>> "/usr/local/lib/python2.7/dist-packages/gunicorn/app/base.py", line 71, in 
>> run
>> 11:13:37 web.1  | Arbiter(self).run()
>> 11:13:37 web.1  |   File 
>> "/usr/local/lib/python2.7/dist-packages/gunicorn/arbiter.py", line 169, in 
>> run
>> 11:13:37 web.1  | self.manage_workers()
>> 11:13:37 web.1  |   File 
>> "/usr/local/lib/python2.7/dist-packages/gunicorn/arbiter.py", line 477, in 
>> manage_workers
>> 11:13:37 web.1  | self.spawn_workers()
>> 11:13:37 web.1  |   File 
>> "/usr/local/lib/python2.7/dist-packages/gunicorn/arbiter.py", line 542, in 
>> spawn_workers
>> 11:13:37 web.1  | time.sleep(0.1 * random.random())
>> 11:13:37 web.1  |   File 
>> 

Re: deploying django on heroku

2014-09-05 Thread Koed00
Looks like Gunicorn can't find your app module hellodjango.wsgi
Did you make a wsgi.py in your app folder as described in the Heroku docs?

On Friday, September 5, 2014 12:19:25 PM UTC+2, ngangsia akumbo wrote:
>
> i had a problem trying to deply django on heroku
>
> yems bphotel # foreman start
> 11:13:37 web.1  | started with pid 9269
> 11:13:37 web.1  | [2014-09-05 11:13:37 +] [9269] [INFO] Starting 
> gunicorn 19.1.1
> 11:13:37 web.1  | [2014-09-05 11:13:37 +] [9269] [INFO] Listening at: 
> http://0.0.0.0:5000 (9269)
> 11:13:37 web.1  | [2014-09-05 11:13:37 +] [9269] [INFO] Using worker: 
> sync
> 11:13:37 web.1  | [2014-09-05 11:13:37 +] [9276] [INFO] Booting worker 
> with pid: 9276
> 11:13:37 web.1  | [2014-09-05 11:13:37 +] [9276] [ERROR] Exception in 
> worker process:
> 11:13:37 web.1  | Traceback (most recent call last):
> 11:13:37 web.1  |   File 
> "/usr/local/lib/python2.7/dist-packages/gunicorn/arbiter.py", line 507, in 
> spawn_worker
> 11:13:37 web.1  | worker.init_process()
> 11:13:37 web.1  |   File 
> "/usr/local/lib/python2.7/dist-packages/gunicorn/workers/base.py", line 
> 114, in init_process
> 11:13:37 web.1  | self.wsgi = self.app.wsgi()
> 11:13:37 web.1  |   File 
> "/usr/local/lib/python2.7/dist-packages/gunicorn/app/base.py", line 66, in 
> wsgi
> 11:13:37 web.1  | self.callable = self.load()
> 11:13:37 web.1  |   File 
> "/usr/local/lib/python2.7/dist-packages/gunicorn/app/wsgiapp.py", line 65, 
> in load
> 11:13:37 web.1  | return self.load_wsgiapp()
> 11:13:37 web.1  |   File 
> "/usr/local/lib/python2.7/dist-packages/gunicorn/app/wsgiapp.py", line 52, 
> in load_wsgiapp
> 11:13:37 web.1  | return util.import_app(self.app_uri)
> 11:13:37 web.1  |   File 
> "/usr/local/lib/python2.7/dist-packages/gunicorn/util.py", line 356, in 
> import_app
> 11:13:37 web.1  | __import__(module)
> 11:13:37 web.1  | ImportError: No module named hellodjango.wsgi
> 11:13:37 web.1  | Traceback (most recent call last):
> 11:13:37 web.1  |   File 
> "/usr/local/lib/python2.7/dist-packages/gunicorn/arbiter.py", line 507, in 
> spawn_worker
> 11:13:37 web.1  | worker.init_process()
> 11:13:37 web.1  |   File 
> "/usr/local/lib/python2.7/dist-packages/gunicorn/workers/base.py", line 
> 114, in init_process
> 11:13:37 web.1  | self.wsgi = self.app.wsgi()
> 11:13:37 web.1  |   File 
> "/usr/local/lib/python2.7/dist-packages/gunicorn/app/base.py", line 66, in 
> wsgi
> 11:13:37 web.1  | self.callable = self.load()
> 11:13:37 web.1  |   File 
> "/usr/local/lib/python2.7/dist-packages/gunicorn/app/wsgiapp.py", line 65, 
> in load
> 11:13:37 web.1  | return self.load_wsgiapp()
> 11:13:37 web.1  |   File 
> "/usr/local/lib/python2.7/dist-packages/gunicorn/app/wsgiapp.py", line 52, 
> in load_wsgiapp
> 11:13:37 web.1  | return util.import_app(self.app_uri)
> 11:13:37 web.1  |   File 
> "/usr/local/lib/python2.7/dist-packages/gunicorn/util.py", line 356, in 
> import_app
> 11:13:37 web.1  | __import__(module)
> 11:13:37 web.1  | ImportError: No module named hellodjango.wsgi
> 11:13:37 web.1  | [2014-09-05 11:13:37 +] [9276] [INFO] Worker exiting 
> (pid: 9276)
> 11:13:37 web.1  | Traceback (most recent call last):
> 11:13:37 web.1  |   File "/usr/local/bin/gunicorn", line 11, in 
> 11:13:37 web.1  | sys.exit(run())
> 11:13:37 web.1  |   File 
> "/usr/local/lib/python2.7/dist-packages/gunicorn/app/wsgiapp.py", line 74, 
> in run
> 11:13:37 web.1  | WSGIApplication("%(prog)s [OPTIONS] 
> [APP_MODULE]").run()
> 11:13:37 web.1  |   File 
> "/usr/local/lib/python2.7/dist-packages/gunicorn/app/base.py", line 185, in 
> run
> 11:13:37 web.1  | super(Application, self).run()
> 11:13:37 web.1  |   File 
> "/usr/local/lib/python2.7/dist-packages/gunicorn/app/base.py", line 71, in 
> run
> 11:13:37 web.1  | Arbiter(self).run()
> 11:13:37 web.1  |   File 
> "/usr/local/lib/python2.7/dist-packages/gunicorn/arbiter.py", line 169, in 
> run
> 11:13:37 web.1  | self.manage_workers()
> 11:13:37 web.1  |   File 
> "/usr/local/lib/python2.7/dist-packages/gunicorn/arbiter.py", line 477, in 
> manage_workers
> 11:13:37 web.1  | self.spawn_workers()
> 11:13:37 web.1  |   File 
> "/usr/local/lib/python2.7/dist-packages/gunicorn/arbiter.py", line 542, in 
> spawn_workers
> 11:13:37 web.1  | time.sleep(0.1 * random.random())
> 11:13:37 web.1  |   File 
> "/usr/local/lib/python2.7/dist-packages/gunicorn/arbiter.py", line 209, in 
> handle_chld
> 11:13:37 web.1  | self.reap_workers()
> 11:13:37 web.1  |   File 
> "/usr/local/lib/python2.7/dist-packages/gunicorn/arbiter.py", line 459, in 
> reap_workers
> 11:13:37 web.1  | raise HaltServer(reason, self.WORKER_BOOT_ERROR)
> 11:13:37 web.1  | gunicorn.errors.HaltServer:  to boot.' 3>
> 11:13:37 web.1  | exited with code 1
> 11:13:37 system | sending SIGTERM to all processes
>
>
>
> Please some help here 
> am using linux mint
>

-- 
You received this message because you are 

deploying django on heroku

2014-09-05 Thread ngangsia akumbo
i had a problem trying to deply django on heroku

yems bphotel # foreman start
11:13:37 web.1  | started with pid 9269
11:13:37 web.1  | [2014-09-05 11:13:37 +] [9269] [INFO] Starting 
gunicorn 19.1.1
11:13:37 web.1  | [2014-09-05 11:13:37 +] [9269] [INFO] Listening at: 
http://0.0.0.0:5000 (9269)
11:13:37 web.1  | [2014-09-05 11:13:37 +] [9269] [INFO] Using worker: 
sync
11:13:37 web.1  | [2014-09-05 11:13:37 +] [9276] [INFO] Booting worker 
with pid: 9276
11:13:37 web.1  | [2014-09-05 11:13:37 +] [9276] [ERROR] Exception in 
worker process:
11:13:37 web.1  | Traceback (most recent call last):
11:13:37 web.1  |   File 
"/usr/local/lib/python2.7/dist-packages/gunicorn/arbiter.py", line 507, in 
spawn_worker
11:13:37 web.1  | worker.init_process()
11:13:37 web.1  |   File 
"/usr/local/lib/python2.7/dist-packages/gunicorn/workers/base.py", line 
114, in init_process
11:13:37 web.1  | self.wsgi = self.app.wsgi()
11:13:37 web.1  |   File 
"/usr/local/lib/python2.7/dist-packages/gunicorn/app/base.py", line 66, in 
wsgi
11:13:37 web.1  | self.callable = self.load()
11:13:37 web.1  |   File 
"/usr/local/lib/python2.7/dist-packages/gunicorn/app/wsgiapp.py", line 65, 
in load
11:13:37 web.1  | return self.load_wsgiapp()
11:13:37 web.1  |   File 
"/usr/local/lib/python2.7/dist-packages/gunicorn/app/wsgiapp.py", line 52, 
in load_wsgiapp
11:13:37 web.1  | return util.import_app(self.app_uri)
11:13:37 web.1  |   File 
"/usr/local/lib/python2.7/dist-packages/gunicorn/util.py", line 356, in 
import_app
11:13:37 web.1  | __import__(module)
11:13:37 web.1  | ImportError: No module named hellodjango.wsgi
11:13:37 web.1  | Traceback (most recent call last):
11:13:37 web.1  |   File 
"/usr/local/lib/python2.7/dist-packages/gunicorn/arbiter.py", line 507, in 
spawn_worker
11:13:37 web.1  | worker.init_process()
11:13:37 web.1  |   File 
"/usr/local/lib/python2.7/dist-packages/gunicorn/workers/base.py", line 
114, in init_process
11:13:37 web.1  | self.wsgi = self.app.wsgi()
11:13:37 web.1  |   File 
"/usr/local/lib/python2.7/dist-packages/gunicorn/app/base.py", line 66, in 
wsgi
11:13:37 web.1  | self.callable = self.load()
11:13:37 web.1  |   File 
"/usr/local/lib/python2.7/dist-packages/gunicorn/app/wsgiapp.py", line 65, 
in load
11:13:37 web.1  | return self.load_wsgiapp()
11:13:37 web.1  |   File 
"/usr/local/lib/python2.7/dist-packages/gunicorn/app/wsgiapp.py", line 52, 
in load_wsgiapp
11:13:37 web.1  | return util.import_app(self.app_uri)
11:13:37 web.1  |   File 
"/usr/local/lib/python2.7/dist-packages/gunicorn/util.py", line 356, in 
import_app
11:13:37 web.1  | __import__(module)
11:13:37 web.1  | ImportError: No module named hellodjango.wsgi
11:13:37 web.1  | [2014-09-05 11:13:37 +] [9276] [INFO] Worker exiting 
(pid: 9276)
11:13:37 web.1  | Traceback (most recent call last):
11:13:37 web.1  |   File "/usr/local/bin/gunicorn", line 11, in 
11:13:37 web.1  | sys.exit(run())
11:13:37 web.1  |   File 
"/usr/local/lib/python2.7/dist-packages/gunicorn/app/wsgiapp.py", line 74, 
in run
11:13:37 web.1  | WSGIApplication("%(prog)s [OPTIONS] 
[APP_MODULE]").run()
11:13:37 web.1  |   File 
"/usr/local/lib/python2.7/dist-packages/gunicorn/app/base.py", line 185, in 
run
11:13:37 web.1  | super(Application, self).run()
11:13:37 web.1  |   File 
"/usr/local/lib/python2.7/dist-packages/gunicorn/app/base.py", line 71, in 
run
11:13:37 web.1  | Arbiter(self).run()
11:13:37 web.1  |   File 
"/usr/local/lib/python2.7/dist-packages/gunicorn/arbiter.py", line 169, in 
run
11:13:37 web.1  | self.manage_workers()
11:13:37 web.1  |   File 
"/usr/local/lib/python2.7/dist-packages/gunicorn/arbiter.py", line 477, in 
manage_workers
11:13:37 web.1  | self.spawn_workers()
11:13:37 web.1  |   File 
"/usr/local/lib/python2.7/dist-packages/gunicorn/arbiter.py", line 542, in 
spawn_workers
11:13:37 web.1  | time.sleep(0.1 * random.random())
11:13:37 web.1  |   File 
"/usr/local/lib/python2.7/dist-packages/gunicorn/arbiter.py", line 209, in 
handle_chld
11:13:37 web.1  | self.reap_workers()
11:13:37 web.1  |   File 
"/usr/local/lib/python2.7/dist-packages/gunicorn/arbiter.py", line 459, in 
reap_workers
11:13:37 web.1  | raise HaltServer(reason, self.WORKER_BOOT_ERROR)
11:13:37 web.1  | gunicorn.errors.HaltServer: 
11:13:37 web.1  | exited with code 1
11:13:37 system | sending SIGTERM to all processes



Please some help here 
am using linux mint

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit