I'm new to GAE. I have a Node application that only handles one URL for now, which should be called as a cron.
I have the following cron.yaml file:
cron:
- description: "Test"
url: /translations
schedule: every 15 minutes
And here is the handlers section of my app.yaml:
handlers:
- url: /.*
script: auto
secure: always
If I call the URL manually, it works and returns a 200 response.
But my job isn't launched, and it isn't listed in the task queue in the Google console either. Do you have an idea about what is missing?