Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(272)

Unified Diff: bigquery-appengine-sample/src/main/webapp/WEB-INF/appengine-web.xml

Issue 5414043: Uploading Bigquery example App Engine dashboard Base URL: https://google-api-java-client.googlecode.com/hg/
Patch Set: Removing unnecessary dependency. Created 12 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: bigquery-appengine-sample/src/main/webapp/WEB-INF/appengine-web.xml
===================================================================
new file mode 100755
--- /dev/null
+++ b/bigquery-appengine-sample/src/main/webapp/WEB-INF/appengine-web.xml
@@ -0,0 +1,31 @@
+<?xml version="1.0" encoding="utf-8"?>
+<appengine-web-app xmlns="http://appengine.google.com/ns/1.0">
+ <application>google.com:bigquerysample</application>
+ <version>1</version>
+
+ <!--
+ By default, App Engine sends requests serially to a given web server.
+ To allow App Engine to send multiple requests in parallel specify:
+ -->
+
+ <threadsafe>true</threadsafe>
+
+ <!-- Configure serving/caching of GWT files -->
+ <static-files>
+ <include path="**" />
+
+ <!-- The following line requires App Engine 1.3.2 SDK -->
+ <include path="**.nocache.*" expiration="0s" />
+
+ <include path="**.cache.*" expiration="365d" />
+ <exclude path="**.gwt.rpc" />
+ </static-files>
+
+ <!-- Configure java.util.logging and Bigquery project -->
+ <system-properties>
+ <property name="java.util.logging.config.file" value="WEB-INF/logging.properties"/>
+ <!-- TODO Add your project ID here. -->
+ <property name="com.google.api.client.sample.bigquery.appengine.dashboard.projectId" value="google.com:bigquery-sample"/>
+ </system-properties>
+
+</appengine-web-app>

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b