So a part of the app.yaml file looks like the following (on the GAE tutorial at least):
handlers:
- url: /.*
script: main.app
However, I've also seen it look like this:
handlers:
- url: /*
script: main.py
Is the second one wrong? Why is the "." necessary and what does it notate? And why does the script end in ".app" when it is clearly a ".py" file?