Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>App Engine recently add support for a feature called modules <em>(Docs: <a href="https://developers.google.com/appengine/docs/go/modules/" rel="noreferrer">go</a>, <a href="https://developers.google.com/appengine/docs/python/modules/" rel="noreferrer">python</a>, <a href="https://developers.google.com/appengine/docs/java/modules/" rel="noreferrer">java</a>)</em></p> <blockquote> <p>App Engine Modules (or just "Modules" hereafter) is a feature that lets developers factor large applications into logical components that can share stateful services and communicate in a secure fashion. An app that handles customer requests might include separate modules to handle other tasks:</p> <ul> <li>API requests from mobile devices</li> <li>Internal, admin-like requests</li> <li>Backend processing such as billing pipelines and data analysis</li> </ul> </blockquote> <p>When you create a new module, App Engine will create a url that corresponds to the module name. If you only have one module then the name will be <code>default</code>. e.g.</p> <ul> <li>http://<strong>default</strong>.myapp.appspot.com</li> <li>http://<strong>mobile‑frontend</strong>.myapp.appspot.com</li> <li>http://<strong>my-module</strong>.myapp.appspot.com</li> </ul> <p>Using <a href="https://developers.google.com/appengine/docs/python/modules/" rel="noreferrer">Domain masking</a>, you could then direct from:</p> <ul> <li>www.myapp.com => http://<strong>default</strong>.myapp.appspot.com</li> <li>www.myapp-mobile.com => http://<strong>mobile‑frontend</strong>.myapp.appspot.com</li> <li>www.example.com => http://<strong>my-module</strong>.myapp.appspot.com</li> </ul>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload