Book Image

Mastering Google App Engine

Book Image

Mastering Google App Engine

Overview of this book

Table of Contents (18 chapters)
Mastering Google App Engine
Credits
About the Author
Acknowledgments
About the Reviewers
www.PacktPub.com
Preface
Index

The dispatch.yaml file


So, we now know how to factor an application into modules and how to access each module. But what if we want certain URL paths to be handled by certain modules instead of relying on the host name / path scheme?

We can do this. The trick is a file called the dispatch.yaml file that contains the URL patterns and the modules that are supposed to handle them. This is what it looks like:

dispatch:    
    - url: "*/api*"
      module: api
    - url: "*/backend*"
      module: backend

This file basically contains two path entries that map to two different modules. The first one is */api*, which means anything containing api in it should be handled by the api module. The second one means that anything starting with backend should be handled by the backend module.

Note

These are unfortunately not regular expressions. These are globing characters. Also note that the patterns are in quote due to the yaml syntax. Each such path entry is limited to only 100 characters and dispatch...