[web2py] Re: GAE Cron, or some equivelant

2013-08-25 Thread Christian Foster Howes
which version of the SDK are you using? try visiting http://localhost:8000 or http://127.0.0.1:8000 you should then see the GAE SDK admin console, and hopefully there is a link to cron from there. also when you deploy you'll see cron jobs and their status in the gae admin console. On Wednesd

[web2py] Re: GAE Cron, or some equivelant

2013-08-21 Thread jjg0
I am using the gae python sdk at the moment. when I go to http://localhost:8000/cron i see an invalid request. On Tuesday, August 20, 2013 4:10:04 PM UTC-4, Niphlod wrote: > > I'm just reading through the docs. > *Cron support in the development server* > > When using the Python SDK, the dev_

[web2py] Re: GAE Cron, or some equivelant

2013-08-20 Thread Niphlod
I'm just reading through the docs. *Cron support in the development server* When using the Python SDK, the dev_appserver has an admin interface that allows you to view cron jobs at http://localhost:8000/cron. The development server doesn't automatically run your cron jobs. You can use your loc

[web2py] Re: GAE Cron, or some equivelant

2013-08-20 Thread jjg0
Still not getting this. The gae docs says 'A cron.yaml file in the root directory of your application (alongside app.yaml) configures scheduled tasks for your Python application.' so I made a cron.yaml file in my root directory in /web2py folder right where the app.yaml file is. Looking at th

[web2py] Re: GAE Cron, or some equivelant

2013-08-20 Thread Niphlod
Scheduler in GAE is not allowed. I'd go for their cron or their task queue... https://developers.google.com/appengine/docs/python/config/cron?hl=it&csw=1 https://developers.google.com/appengine/docs/python/taskqueue/?hl=it&csw=1#Using_Task_Queues_in_Python There's also a presentation that explains

[web2py] Re: GAE Cron, or some equivelant

2013-08-20 Thread jjg0
nothing? On Monday, August 19, 2013 7:49:03 AM UTC-4, jjg0 wrote: > > I was referring to google app engine... > The book hasn't been very helpful > > On Friday, August 16, 2013 6:05:41 PM UTC-4, Massimo Di Pierro wrote: >> >> It all depends on how you run web2py. If you run it with web2py.py thank

[web2py] Re: GAE Cron, or some equivelant

2013-08-19 Thread jjg0
I was referring to google app engine... The book hasn't been very helpful On Friday, August 16, 2013 6:05:41 PM UTC-4, Massimo Di Pierro wrote: > > It all depends on how you run web2py. If you run it with web2py.py thank > you can pass a command line option to enable cron and then you need a > a

[web2py] Re: GAE Cron, or some equivelant

2013-08-16 Thread Massimo Di Pierro
It all depends on how you run web2py. If you run it with web2py.py thank you can pass a command line option to enable cron and then you need a applications/app/cron/crontab file. if you run web2py with apache or other server via fcgi or wsgi, than you should use the scheduler instead. This is d