Changeset 13266 for trunk/abcl/examples/google-app-engine
- Timestamp:
- 04/11/11 05:51:36 (13 years ago)
- Location:
- trunk/abcl/examples/google-app-engine
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abcl/examples/google-app-engine/README
r13264 r13266 31 31 32 32 33 Deploying to GAE 34 ---------------- 35 36 1. To deploy the included example to GAE, you need to first obtain a 37 GAE account, and pick a GAE application id to use with the 38 application. 39 40 2. Then you need to edit 'war/WEB-INF/appengine-web.xml' to specify 41 this application. Just replace the contents of the <applciation> 42 tag (initially 'GAE-APPLICATION-ID-GOES-HERE') in the file with 43 your GAE ID. 44 45 3. Then the Ant task 'update' should upload your application to GAE: 46 47 unix$ ant update 48 49 You will be prompted for the Google Account credentials associated 50 with the application ID. 51 52 53 54 33 55 34 56 35 57 36 58 59 -
trunk/abcl/examples/google-app-engine/build.xml
r13265 r13266 27 27 todir="war/WEB-INF/lib" 28 28 flatten="true"> 29 <!-- 29 30 <fileset dir="${sdk.dir}/lib/user"> 30 31 <include name="**/*.jar" /> 31 32 </fileset> 33 --> 32 34 <fileset dir="${abcl.dir}"> 33 35 <include name="dist/*.jar" /> … … 91 93 </target> 92 94 93 <target name="runserver-debug" depends="compile ,resources.copy"95 <target name="runserver-debug" depends="compile" 94 96 description="Starts the development server."> 95 97 <dev_appserver war="war" port="8888"/> 96 98 </target> 99 100 <target name="update" depends="compile" 101 description="Uploads the application to App Engine."> 102 <appcfg action="update" war="war" /> 103 </target> 104 97 105 </project> -
trunk/abcl/examples/google-app-engine/war/WEB-INF/appengine-web.xml
r12231 r13266 1 1 <?xml version="1.0" encoding="utf-8"?> 2 2 <appengine-web-app xmlns="http://appengine.google.com/ns/1.0"> 3 <application>abcl-test</application>4 3 <application>GAE-APPLICATION-ID-GOES-HERE</application> 4 <version>1</version> 5 5 </appengine-web-app>
Note: See TracChangeset
for help on using the changeset viewer.