Skip to content

Instantly share code, notes, and snippets.

@iperdomo
Created January 26, 2015 10:44
Show Gist options
  • Save iperdomo/ba84a7035ad2658ffc72 to your computer and use it in GitHub Desktop.
Save iperdomo/ba84a7035ad2658ffc72 to your computer and use it in GitHub Desktop.
Sample Akvo FLOW appengine-web.xml
<?xml version="1.0" encoding="utf-8"?>
<appengine-web-app xmlns="http://appengine.google.com/ns/1.0">
<application>akvoflowsandbox</application>
<version>1</version>
<sessions-enabled>true</sessions-enabled>
<threadsafe>true</threadsafe>
<auto-id-policy>legacy</auto-id-policy>
<static-files>
<include path="/**.png" expiration="1000d 5h" />
<include path="/**.jpg" expiration="1000d 5h" />
</static-files>
<!-- Configure java.util.logging -->
<system-properties>
<property name="apkS3Path" value="https://akvoflow.s3.amazonaws.com/apk/" />
<property name="autoUpdateApk" value="true" />
<property name="java.util.logging.config.file" value="WEB-INF/logging.properties" />
<property name="aws_secret_key" value="..." />
<property name="aws_identifier" value="..." />
<property name="photo_url_root" value="https://akvoflowsandbox.s3.amazonaws.com/images/" />
<property name="alias" value="akvoflowsandbox.appspot.com" />
<property name="flowServices" value="http://flowdev1.akvo.org" />
<property name="s3bucket" value="akvoflowsandbox" />
<property name="surveyuploadurl" value="https://akvoflowsandbox.s3.amazonaws.com/" />
<property name="surveyuploaddir" value="surveys" />
<property name="deviceZipPath" value="https://akvoflowsandbox.s3.amazonaws.com/devicezip/" />
<property name="emailFromAddress" value="[email protected]" />
<property name="recipientListString" value="[email protected];FLOW Errors recipient" />
<property name="defaultPhotoCaption" value="Akvo" />
<property name="attachreport" value="true" />
<property name="bootstrapdir" value="bootstrap"/>
<property name="imageroot" value="https://akvoflowsandbox.appspot.com"/>
<property name="mapiconimageroot" value="https://akvoflowsandbox.s3.amazonaws.com/images/mapicons"/>
<property name="scoreAPFlag" value="true"/>
<property name="organization" value="Akvo"/>
<property name="signingKey" value="..." />
<property name="allowUnsignedData" value="true" />
<property name="defaultOrg" value="Akvo" />
<property name="domainType" value="locale" />
<property name="exportedProperties" value="defaultOrg,domainType,pointTypes" />
<property name="pointTypes" value="WaterPoint,SanitationPoint,PublicInstitution"/>
<property name="optionRenderMode" value="radio"/>
<property name="backendpublish" value="true"/>
<property name="cacheExpirySeconds" value="3600"/>
<property name="useLongDates" value="true"/>
<property name="statusQuestionText" value="water available on the day;Yes=FUNCTIONING_HIGH;No=BROKEN_DOWN;DEFAULT=BROKEN_DOWN"/>
<property name="mergeNearbyLocales" value="false"/>
<property name="scoreAPDynamicFlag" value="false"/>
<property name="asyncTaskTimeout" value="16384"/>
<property name="enableRestSecurity" value="true"/>
<property name="restPrivateKey" value="..."/>
<property name="useTabRDRFlag" value="false"/>
<property name="showStatisticsFeature" value="false"/>
<property name="showMonitoringFeature" value="true"/>
<property name="mandatoryQuestionID" value="false"/>
</system-properties>
</appengine-web-app>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment