Re: Deploying to Heroku for first time, Dynos is blank, not recognizing Procfile

2014-01-09 Thread Vibhu Rishi
Everything on Heroku is git based. So, you will have to do a git push
heroku master for any updates.

V.


On Thu, Jan 9, 2014 at 7:18 AM, Scott Meyers wrote:

> Thanks for the effort.  Yes I do have a requirements.txt file, and yes, my
> Procfile has no extensions.  Heroku just isn't picking it up.  If I delete
> my procfile and build another one, how do I re-send it to Heroku?  Do I do
> another commit, or push master?
>
>
> On Tuesday, January 7, 2014 2:40:07 AM UTC-8, James Turley wrote:
>
>> Do you have a requirements.txt file (with all your requirements therein)?
>> Heroku recognises python apps by its presence (although I'm told this is
>> not yet 100% reliable - never tried myself).
>>
>>
>> On Tue, Jan 7, 2014 at 9:55 AM, Vibhu Rishi  wrote:
>>
>>> yes. just create a text file with no extension. Here's mine for
>>> reference :
>>>
>>> $ cat Procfile
>>> web: gunicorn qj.wsgi
>>>
>>>
>>> V.
>>>
>>>
>>> On Tue, Jan 7, 2014 at 9:31 AM, Scott Meyers wrote:
>>>
  Programming newb, Trying to use Heroku for the first time for a
 Django app. After I push it to Heroku, the Dynos field is blank. I expected
 to see my procfile: web: python manage.py runserver 0.0.0.0:$PORT
 --noreload

 Of course, when I try to open the application on Heroku, I get: An
 error occurred in the application and your page could not be served. Please
 try again in a few moments.

 If you are the application owner, check your logs for details

 Could this be because I don't have an extension on my procfile?

 My Procfile should just be a file I created in my text editor, right?

 Here is the log:

 2014-01-06T07:34:17.321925+00:00 heroku[router]: at=error code=H14
 desc="No web processes running" method=GET path=/ host=
 aqueous-dawn-4712.herokuapp.com fwd="98.232.45.58" dyno= connect=
 service= status=503 bytes=

 2014-01-06T07:34:17.778360+00:00 heroku[router]: at=error code=H14
 desc="No web processes running" method=GET path=/favicon.ico host=
 aqueous-dawn-4712.herokuapp.com fwd="98.232.45.58" dyno= connect=
 service= status=503 bytes=

 2014-01-06T07:35:01.608749+00:00 heroku[router]: at=error code=H14
 desc="No web processes running" method=GET path=/ host=
 aqueous-dawn-4712.herokuapp.com fwd="98.232.45.58" dyno= connect=
 service= status=503 bytes=

 2014-01-06T07:35:01.868486+00:00 heroku[router]: at=error code=H14
 desc="No web processes running" method=GET path=/favicon.ico host=
 aqueous-dawn-4712.herokuapp.com fwd="98.232.45.58" dyno= connect=
 service= status=503 bytes=

 2014-01-06T07:46:57.862560+00:00 heroku[router]: at=error code=H14
 desc="No web processes running" method=GET path=/ host=
 aqueous-dawn-4712.herokuapp.com fwd="98.232.45.58" dyno= connect=
 service= status=503 bytes=

 2014-01-06T07:46:58.114270+00:00 heroku[router]: at=error code=H14
 desc="No web processes running" method=GET path=/favicon.ico host=
 aqueous-dawn-4712.herokuapp.com fwd="98.232.45.58" dyno= connect=
 service= status=503 bytes=

 --
 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...@googlegroups.com.
 To post to this group, send email to django...@googlegroups.com.

 Visit this group at http://groups.google.com/group/django-users.
 To view this discussion on the web visit https://groups.google.com/d/
 msgid/django-users/293796b7-2700-4c95-ac02-25c512ea41b0%
 40googlegroups.com.
 For more options, visit https://groups.google.com/groups/opt_out.

>>>
>>>
>>>
>>> --
>>> Simplicity is the ultimate sophistication. - Leonardo da Vinci
>>> Life is really simple, but we insist on making it complicated. -
>>> Confucius
>>>
>>> --
>>> 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...@googlegroups.com.
>>> To post to this group, send email to django...@googlegroups.com.
>>>
>>> Visit this group at http://groups.google.com/group/django-users.
>>> To view this discussion on the web visit https://groups.google.com/d/
>>> msgid/django-users/CAPiONwkA87ecejWXLMrvjUgmTE8z3
>>> pbZ%2B1N1t%3DyPJ85xYyb2DQ%40mail.gmail.com.
>>>
>>> For more options, visit https://groups.google.com/groups/opt_out.
>>>
>>
>>  --
> 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 

Re: Deploying to Heroku for first time, Dynos is blank, not recognizing Procfile

2014-01-08 Thread Scott Meyers
Thanks for the effort.  Yes I do have a requirements.txt file, and yes, my 
Procfile has no extensions.  Heroku just isn't picking it up.  If I delete 
my procfile and build another one, how do I re-send it to Heroku?  Do I do 
another commit, or push master?

On Tuesday, January 7, 2014 2:40:07 AM UTC-8, James Turley wrote:
>
> Do you have a requirements.txt file (with all your requirements therein)? 
> Heroku recognises python apps by its presence (although I'm told this is 
> not yet 100% reliable - never tried myself).
>
>
> On Tue, Jan 7, 2014 at 9:55 AM, Vibhu Rishi  > wrote:
>
>> yes. just create a text file with no extension. Here's mine for reference 
>> : 
>>
>> $ cat Procfile 
>> web: gunicorn qj.wsgi
>>
>>
>> V. 
>>
>>
>> On Tue, Jan 7, 2014 at 9:31 AM, Scott Meyers 
>> > > wrote:
>>
>>> Programming newb, Trying to use Heroku for the first time for a Django 
>>> app. After I push it to Heroku, the Dynos field is blank. I expected to see 
>>> my procfile: web: python manage.py runserver 0.0.0.0:$PORT --noreload
>>>
>>> Of course, when I try to open the application on Heroku, I get: An error 
>>> occurred in the application and your page could not be served. Please try 
>>> again in a few moments.
>>>
>>> If you are the application owner, check your logs for details
>>>
>>> Could this be because I don't have an extension on my procfile?
>>>
>>> My Procfile should just be a file I created in my text editor, right?
>>>
>>> Here is the log:
>>>
>>> 2014-01-06T07:34:17.321925+00:00 heroku[router]: at=error code=H14 
>>> desc="No web processes running" method=GET path=/ host=
>>> aqueous-dawn-4712.herokuapp.com fwd="98.232.45.58" dyno= connect= 
>>> service= status=503 bytes=
>>>
>>> 2014-01-06T07:34:17.778360+00:00 heroku[router]: at=error code=H14 
>>> desc="No web processes running" method=GET path=/favicon.ico host=
>>> aqueous-dawn-4712.herokuapp.com fwd="98.232.45.58" dyno= connect= 
>>> service= status=503 bytes=
>>>
>>> 2014-01-06T07:35:01.608749+00:00 heroku[router]: at=error code=H14 
>>> desc="No web processes running" method=GET path=/ host=
>>> aqueous-dawn-4712.herokuapp.com fwd="98.232.45.58" dyno= connect= 
>>> service= status=503 bytes=
>>>
>>> 2014-01-06T07:35:01.868486+00:00 heroku[router]: at=error code=H14 
>>> desc="No web processes running" method=GET path=/favicon.ico host=
>>> aqueous-dawn-4712.herokuapp.com fwd="98.232.45.58" dyno= connect= 
>>> service= status=503 bytes=
>>>
>>> 2014-01-06T07:46:57.862560+00:00 heroku[router]: at=error code=H14 
>>> desc="No web processes running" method=GET path=/ host=
>>> aqueous-dawn-4712.herokuapp.com fwd="98.232.45.58" dyno= connect= 
>>> service= status=503 bytes=
>>>
>>> 2014-01-06T07:46:58.114270+00:00 heroku[router]: at=error code=H14 
>>> desc="No web processes running" method=GET path=/favicon.ico host=
>>> aqueous-dawn-4712.herokuapp.com fwd="98.232.45.58" dyno= connect= 
>>> service= status=503 bytes=
>>>  
>>> -- 
>>> 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...@googlegroups.com .
>>> To post to this group, send email to django...@googlegroups.com
>>> .
>>> Visit this group at http://groups.google.com/group/django-users.
>>> To view this discussion on the web visit 
>>> https://groups.google.com/d/msgid/django-users/293796b7-2700-4c95-ac02-25c512ea41b0%40googlegroups.com
>>> .
>>> For more options, visit https://groups.google.com/groups/opt_out.
>>>
>>
>>
>>
>> -- 
>> Simplicity is the ultimate sophistication. - Leonardo da Vinci
>> Life is really simple, but we insist on making it complicated. - 
>> Confucius 
>>
>> -- 
>> 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...@googlegroups.com .
>> To post to this group, send email to django...@googlegroups.com
>> .
>> Visit this group at http://groups.google.com/group/django-users.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/django-users/CAPiONwkA87ecejWXLMrvjUgmTE8z3pbZ%2B1N1t%3DyPJ85xYyb2DQ%40mail.gmail.com
>> .
>>
>> For more options, visit https://groups.google.com/groups/opt_out.
>>
>
>

-- 
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 
https://groups.google.com/d/msgid/django-users/ad060dea-1931-40ef-832d-dfdcc7680934%40googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Deploying to Heroku for first time, Dynos is blank, not recognizing Procfile

2014-01-07 Thread James Turley
Do you have a requirements.txt file (with all your requirements therein)?
Heroku recognises python apps by its presence (although I'm told this is
not yet 100% reliable - never tried myself).


On Tue, Jan 7, 2014 at 9:55 AM, Vibhu Rishi  wrote:

> yes. just create a text file with no extension. Here's mine for reference
> :
>
> $ cat Procfile
> web: gunicorn qj.wsgi
>
>
> V.
>
>
> On Tue, Jan 7, 2014 at 9:31 AM, Scott Meyers wrote:
>
>> Programming newb, Trying to use Heroku for the first time for a Django
>> app. After I push it to Heroku, the Dynos field is blank. I expected to see
>> my procfile: web: python manage.py runserver 0.0.0.0:$PORT --noreload
>>
>> Of course, when I try to open the application on Heroku, I get: An error
>> occurred in the application and your page could not be served. Please try
>> again in a few moments.
>>
>> If you are the application owner, check your logs for details
>>
>> Could this be because I don't have an extension on my procfile?
>>
>> My Procfile should just be a file I created in my text editor, right?
>>
>> Here is the log:
>>
>> 2014-01-06T07:34:17.321925+00:00 heroku[router]: at=error code=H14
>> desc="No web processes running" method=GET path=/ host=
>> aqueous-dawn-4712.herokuapp.com fwd="98.232.45.58" dyno= connect=
>> service= status=503 bytes=
>>
>> 2014-01-06T07:34:17.778360+00:00 heroku[router]: at=error code=H14
>> desc="No web processes running" method=GET path=/favicon.ico host=
>> aqueous-dawn-4712.herokuapp.com fwd="98.232.45.58" dyno= connect=
>> service= status=503 bytes=
>>
>> 2014-01-06T07:35:01.608749+00:00 heroku[router]: at=error code=H14
>> desc="No web processes running" method=GET path=/ host=
>> aqueous-dawn-4712.herokuapp.com fwd="98.232.45.58" dyno= connect=
>> service= status=503 bytes=
>>
>> 2014-01-06T07:35:01.868486+00:00 heroku[router]: at=error code=H14
>> desc="No web processes running" method=GET path=/favicon.ico host=
>> aqueous-dawn-4712.herokuapp.com fwd="98.232.45.58" dyno= connect=
>> service= status=503 bytes=
>>
>> 2014-01-06T07:46:57.862560+00:00 heroku[router]: at=error code=H14
>> desc="No web processes running" method=GET path=/ host=
>> aqueous-dawn-4712.herokuapp.com fwd="98.232.45.58" dyno= connect=
>> service= status=503 bytes=
>>
>> 2014-01-06T07:46:58.114270+00:00 heroku[router]: at=error code=H14
>> desc="No web processes running" method=GET path=/favicon.ico host=
>> aqueous-dawn-4712.herokuapp.com fwd="98.232.45.58" dyno= connect=
>> service= status=503 bytes=
>>
>> --
>> 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
>> https://groups.google.com/d/msgid/django-users/293796b7-2700-4c95-ac02-25c512ea41b0%40googlegroups.com
>> .
>> For more options, visit https://groups.google.com/groups/opt_out.
>>
>
>
>
> --
> Simplicity is the ultimate sophistication. - Leonardo da Vinci
> Life is really simple, but we insist on making it complicated. - Confucius
>
> --
> 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
> https://groups.google.com/d/msgid/django-users/CAPiONwkA87ecejWXLMrvjUgmTE8z3pbZ%2B1N1t%3DyPJ85xYyb2DQ%40mail.gmail.com
> .
>
> For more options, visit https://groups.google.com/groups/opt_out.
>

-- 
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 
https://groups.google.com/d/msgid/django-users/CAAb4X%3DwJczRTTP1ejYs0jO3VFEUViM4WvHO44JGC4%2BHUyMFApQ%40mail.gmail.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Deploying to Heroku for first time, Dynos is blank, not recognizing Procfile

2014-01-07 Thread Vibhu Rishi
yes. just create a text file with no extension. Here's mine for reference :

$ cat Procfile
web: gunicorn qj.wsgi


V.


On Tue, Jan 7, 2014 at 9:31 AM, Scott Meyers wrote:

> Programming newb, Trying to use Heroku for the first time for a Django
> app. After I push it to Heroku, the Dynos field is blank. I expected to see
> my procfile: web: python manage.py runserver 0.0.0.0:$PORT --noreload
>
> Of course, when I try to open the application on Heroku, I get: An error
> occurred in the application and your page could not be served. Please try
> again in a few moments.
>
> If you are the application owner, check your logs for details
>
> Could this be because I don't have an extension on my procfile?
>
> My Procfile should just be a file I created in my text editor, right?
>
> Here is the log:
>
> 2014-01-06T07:34:17.321925+00:00 heroku[router]: at=error code=H14
> desc="No web processes running" method=GET path=/ host=
> aqueous-dawn-4712.herokuapp.com fwd="98.232.45.58" dyno= connect=
> service= status=503 bytes=
>
> 2014-01-06T07:34:17.778360+00:00 heroku[router]: at=error code=H14
> desc="No web processes running" method=GET path=/favicon.ico host=
> aqueous-dawn-4712.herokuapp.com fwd="98.232.45.58" dyno= connect=
> service= status=503 bytes=
>
> 2014-01-06T07:35:01.608749+00:00 heroku[router]: at=error code=H14
> desc="No web processes running" method=GET path=/ host=
> aqueous-dawn-4712.herokuapp.com fwd="98.232.45.58" dyno= connect=
> service= status=503 bytes=
>
> 2014-01-06T07:35:01.868486+00:00 heroku[router]: at=error code=H14
> desc="No web processes running" method=GET path=/favicon.ico host=
> aqueous-dawn-4712.herokuapp.com fwd="98.232.45.58" dyno= connect=
> service= status=503 bytes=
>
> 2014-01-06T07:46:57.862560+00:00 heroku[router]: at=error code=H14
> desc="No web processes running" method=GET path=/ host=
> aqueous-dawn-4712.herokuapp.com fwd="98.232.45.58" dyno= connect=
> service= status=503 bytes=
>
> 2014-01-06T07:46:58.114270+00:00 heroku[router]: at=error code=H14
> desc="No web processes running" method=GET path=/favicon.ico host=
> aqueous-dawn-4712.herokuapp.com fwd="98.232.45.58" dyno= connect=
> service= status=503 bytes=
>
> --
> 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
> https://groups.google.com/d/msgid/django-users/293796b7-2700-4c95-ac02-25c512ea41b0%40googlegroups.com
> .
> For more options, visit https://groups.google.com/groups/opt_out.
>



-- 
Simplicity is the ultimate sophistication. - Leonardo da Vinci
Life is really simple, but we insist on making it complicated. - Confucius

-- 
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 
https://groups.google.com/d/msgid/django-users/CAPiONwkA87ecejWXLMrvjUgmTE8z3pbZ%2B1N1t%3DyPJ85xYyb2DQ%40mail.gmail.com.
For more options, visit https://groups.google.com/groups/opt_out.


Deploying to Heroku for first time, Dynos is blank, not recognizing Procfile

2014-01-06 Thread Scott Meyers


Programming newb, Trying to use Heroku for the first time for a Django app. 
After I push it to Heroku, the Dynos field is blank. I expected to see my 
procfile: web: python manage.py runserver 0.0.0.0:$PORT --noreload

Of course, when I try to open the application on Heroku, I get: An error 
occurred in the application and your page could not be served. Please try 
again in a few moments.

If you are the application owner, check your logs for details

Could this be because I don't have an extension on my procfile?

My Procfile should just be a file I created in my text editor, right?

Here is the log:

2014-01-06T07:34:17.321925+00:00 heroku[router]: at=error code=H14 desc="No 
web processes running" method=GET path=/ 
host=aqueous-dawn-4712.herokuapp.com fwd="98.232.45.58" dyno= connect= 
service= status=503 bytes=

2014-01-06T07:34:17.778360+00:00 heroku[router]: at=error code=H14 desc="No 
web processes running" method=GET path=/favicon.ico 
host=aqueous-dawn-4712.herokuapp.com fwd="98.232.45.58" dyno= connect= 
service= status=503 bytes=

2014-01-06T07:35:01.608749+00:00 heroku[router]: at=error code=H14 desc="No 
web processes running" method=GET path=/ 
host=aqueous-dawn-4712.herokuapp.com fwd="98.232.45.58" dyno= connect= 
service= status=503 bytes=

2014-01-06T07:35:01.868486+00:00 heroku[router]: at=error code=H14 desc="No 
web processes running" method=GET path=/favicon.ico 
host=aqueous-dawn-4712.herokuapp.com fwd="98.232.45.58" dyno= connect= 
service= status=503 bytes=

2014-01-06T07:46:57.862560+00:00 heroku[router]: at=error code=H14 desc="No 
web processes running" method=GET path=/ 
host=aqueous-dawn-4712.herokuapp.com fwd="98.232.45.58" dyno= connect= 
service= status=503 bytes=

2014-01-06T07:46:58.114270+00:00 heroku[router]: at=error code=H14 desc="No 
web processes running" method=GET path=/favicon.ico 
host=aqueous-dawn-4712.herokuapp.com fwd="98.232.45.58" dyno= connect= 
service= status=503 bytes=

-- 
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 
https://groups.google.com/d/msgid/django-users/293796b7-2700-4c95-ac02-25c512ea41b0%40googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.