Comment out the 'loadtest' backend in the 'counter' backend sample so that it does...
[gae-samples.git] / shell / README
bloba63bcc36fc90d624bff037746c6f4bba9aeddf09
1 An interactive, stateful AJAX shell that runs Python code on the server.
3 Part of http://code.google.com/p/google-app-engine-samples/.
5 May be run as a standalone app or in an existing app as an admin-only handler.
6 Can be used for system administration tasks, as an interactive way to try out
7 APIs, or as a debugging aid during development.
9 The logging, os, sys, db, and users modules are imported automatically.
11 Interpreter state is stored in the datastore so that variables, function
12 definitions, and other values in the global and local namespaces can be used
13 across commands.
15 Three different versions of app.yaml are included with different configurations.
16 One uses the master/slave datastore, one uses the HRD, and one uses the Python
17 2.7 runtime. You can choose between them by changing the app.yaml symlink to
18 point to any of the app.yaml.shell* files. If you're deploying to prod, also
19 uncomment the appropriate lines in templates/shell.html.
21 To use the shell in your app, copy shell.py, static/*, and templates/* into
22 your app's source directory. Then, copy the URL handlers from app.yaml into
23 your app.yaml.