Google App Engine production integration

GAE-Studio, since its version 0.3, can be integrated on your Google App Engine application. In order to avoid malicious usage of GAE-Studio, you need to secure the path to GAE-Studio in your web.xml.

<security-constraint>
    <web-resource-collection>
        <web-resource-name>admin</web-resource-name>
        <url-pattern>/gae-studio-admin/*</url-pattern>
    </web-resource-collection>
    <auth-constraint>
        <role-name>admin</role-name>
    </auth-constraint>
</security-constraint>

This will make sure that all users that are registered as developers in your Google App Engine administration panel will have access to it.