Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / native_client_sdk / src / gonacl_appengine / README
blobd751632b35d22213832f3e62236ca86332af11d6
1 GoNaCl App Engine
2 =================
4 This is a new App Engine Python 2.7 application for http://gonacl.com
6 At this time it presents the existing functionality of redirecting
7 to http://developers.google.com/native-client/
9 Also, there are PNaCl demos added at ``/demo/<name>``
12 To Run Locally
13 --------------
15 1. Download the App Engine SDK (https://developers.google.com/appengine/downloads#Google_App_Engine_SDK_for_Python)
17 2. Run ``<path/to/app/engine>/dev_appserver.py app.yaml``
19 3. Navigate in your browser to http://localhost:8080/demo/
22 To Update App Engine (HTML/JS)
23 ------------------------------
25 To upload, run this from the root directory of the App Engine SDK::
27   $ ./appcfg.py update <path-to-this-dir>
29 It probably makes sense to bump the application version in app.yaml for each
30 upload, as it lets us use App Engine's versioning. The newly uploaded version
31 can be tried before actually being activated, by going to the "Versions"
32 section on the App Engine dashboard. Note that the newly uploaded version only
33 becomes active when it's set as the "default" version in the dashboard.
36 To Update the Binary files (.pexe/.nmf)
37 ---------------------------------------
39 The build outputs are automatically uploaded to Google Cloud Storage
40 (``storage.googleapis.com``) by the linux SDK builder (linux-sdk-multi).
41 To publish a new version:
43 1. Make and land your change to the demo, found in ``src/<demo-name>``.
45 2. Wait for the linux SDK builder to build and upload your change. You can see
46    what's available in the browser at::
48      http://gsdview.appspot.com/gonacl/demos/continuous/
50    Or by using gsutil::
52      $ gsutil ls gs://gonacl/demos/continuous/
54 3. Use 'make publish REVISION=<REV>' in the ``src`` directory to publish the
55    revision.
57 4. Update the URLs to use this new revision in each demo's JavaScript files:
59    Please see the following table for the location of the revision number to
60    modify.
62    ==========  =============================  ===========
63    Demo        File                           Function
64    ==========  =============================  ===========
65    bullet      /static/bullet/main.js         pageDidLoad
66    cube        /static/cube/example.js        getDataURL
67    earth       /static/earth/example.js       getDataURL
68    life        /static/life/example.js        getDataURL
69    lua         /static/lua/lua.js
70    smoothlife  /static/smoothlife/example.js  getDataURL
71    voronoi     /static/voronoi/example.js     getDataURL
73 5. Land a CL with these changes.
75 6. Update App Engine, using the instructions above.