public
Description: Atom REST API for Google App Engine
Homepage:
Clone URL: git://github.com/fczuardi/gae-rest.git
gae-rest / INSTALL.yaml
100644 19 lines (18 sloc) 0.454 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# INSTALLATION
#
# To enable the REST API on your Google App Engine Application, simply
# copy the gae-rest folder containing the scripts to the root of your
# app, edit the config.py file and update your app.yaml file to include
# the proper /xn/ handler
#
# The ending file should look like this:
#
application: yourappname
version: 1
runtime: python
api_version: 1
 
handlers:
- url: /xn/.*
  script: gae-rest/xn.py
# your other handlers here
# ...