I don't believe that this question has actually been asked online before.
I'm aware that for cron'd tasks, there needs to be three handlers. One in the cron.yaml, the app.yaml, and the script itself.
But what about management commands, which themselves already have a unique structuring.
Here is my cron.yaml
cron:
- description: operate on new models every 10 minutes
url: /my_model/management/commands
schedule: every 10 minutes
Here is my app.yaml
handlers:
- url: /my_model/management/commands
script: operate.py
Examples would help a lot, thanks!