Re: Django setup with elsatic beanstalk

2014-07-15 Thread Stefano Tranquillini
i gave up and create a machine on AWS and deployed everything. it's not that complex, u can find tutorial online . On Sat, Jul 12, 2014 at 1:24 AM, Rob wrote: > gmail.com> writes: > > > > > > > I'm having a similar problem - I don't see errors from the > EB console - but django is not load

Re: Django setup with elsatic beanstalk

2014-07-11 Thread Rob
gmail.com> writes: > > > I'm having a similar problem - I don't see errors from the EB console - but django is not loaded I still get the standard AWS EB page.I have tried editing settings.py and app.config according to this tutorial:http://docs.aws.amazon.com/elasticbeanstalk /latest/dg/c

Re: Django setup with elsatic beanstalk

2013-05-16 Thread yehudaprizont
I'm having a similar problem - I don't see errors from the EB console - but django is not loaded I still get the standard AWS EB page. I have tried editing settings.py and app.config according to this tutorial: http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/create_deploy_Python_django.html

Re: Django setup with elsatic beanstalk

2012-11-29 Thread Stefano Tranquillini
i give up after a while. every time it was a mess. and AWS is free for 12 months. i switched to appfog, which actually runs for you stuff on AWS. quite easy to set up and put code. basically you need the requirements.txt (as for AWS). and change a bit the setting.py ciao On Thu, Nov 29, 2012 at

Re: Django setup with elsatic beanstalk

2012-11-28 Thread David Seelig
Did the eb update work? I ran into this same issue; seems like when creating the first instance it works, but the second time are problems: https://github.com/boto/boto/issues/1087 According to that thread, if you delete the WSGIPath line and then create a new environment, you might have better

Re: Django setup with elsatic beanstalk

2012-10-30 Thread Stefano Tranquillini
Well i was able to play with it only right now. there's a thing i can't understand. what's the application.py? i've back this error 2012-10-30 14:28:42,890 [INFO] (26110 MainThread) [directoryHooksExecutor.py-28] [root directoryHooksExecutor info] Output from script: 2012-10-30 14:28:42,875 ERR

Re: Django setup with elsatic beanstalk

2012-10-24 Thread Stefano Tranquillini
thx. later i try both yr suggestions. i haven;t been notified of the previous reply. thx On Wednesday, October 24, 2012 12:06:13 AM UTC+2, Andrzej Winnicki wrote: > > Try also to change settings in .elasticbeanstalk/optionsettings. > > > [aws:elasticbeanstalk:application:environment] > DJANGO_SE

Re: Django setup with elsatic beanstalk

2012-10-23 Thread Andrzej Winnicki
Try with python.config instead of simple .config file (this is just an file extension, not file name). Requirements.txt should be at 'top-level directory of your source bundle'. More info here: http://docs.amazonwebservices.com/elasticbeanstalk/latest/dg/create_deploy_Python_custom_container.htm

Re: Django setup with elsatic beanstalk

2012-10-23 Thread Andrzej Winnicki
Try also to change settings in .elasticbeanstalk/optionsettings. [aws:elasticbeanstalk:application:environment] DJANGO_SETTINGS_MODULE = PARAM1 = PARAM2 = PARAM4 = PARAM3 = PARAM5 = [aws:elasticbeanstalk:container:python] WSGIPath = application.py NumProcesses = 1 StaticFiles = /static=

Re: Django setup with elsatic beanstalk

2012-10-12 Thread Stefano Tranquillini
Mmm. seems that i missing something. this is the log 2012-10-12 09:36:51,352 [INFO] (24716 MainThread) [directoryHooksExecutor.py-28] [root directoryHooksExecutor info] Output from script: 2012-10-12 09:36:51,331* ERRORThe specified WSGIPath of "application.py" was not found in the source bun

Re: Django setup with elsatic beanstalk

2012-10-11 Thread Stefano Tranquillini
same problem, did you solve it? On Monday, October 8, 2012 7:22:51 PM UTC+2, shlomi oberman wrote: > > I'm trying without succes to setup a simple application using django with > elastic beanstalk from my windows machine. > Does anyone have any expreience with this? I am currently getting the >

Re: Django setup with elsatic beanstalk

2012-10-09 Thread Seth Alves
If you name your top-level wsgi file to "application.py", does it do any better? -seth On Monday, October 8, 2012 10:22:51 AM UTC-7, shlomi oberman wrote: > > I'm trying without succes to setup a simple application using django with > elastic beanstalk from my windows machine. > Does anyo

Django setup with elsatic beanstalk

2012-10-08 Thread shlomi oberman
I'm trying without succes to setup a simple application using django with elastic beanstalk from my windows machine. Does anyone have any expreience with this? I am currently getting the following error from the EB console: "Your WSGIPath refers to a file that does not exist." -- You received