Created
September 8, 2010 02:59
-
-
Save tckz/569544 to your computer and use it in GitHub Desktop.
GAE向けのbuild.xmlでproxy
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
JVM系 | |
<target name="run" depends="compile" | |
description="Starts the development server."> | |
<dev_appserver war="war" port="3000" address="0.0.0.0"> | |
<options> | |
<arg value="--jvm_flag=-Dhttps.proxyHost=proxy.example.com" /> <arg value="--jvm_flag=-Dhttps.proxyPort=8080" /> | |
</options> | |
</dev_appserver> | |
</target> | |
appcfg系 | |
<target name="request_logs" | |
description="Downloads log data from App Engine for the application."> | |
<appcfg action="request_logs" war="war"> | |
<options> | |
<arg value="--proxy=proxy.example.com:8080" /> | |
<arg value="--num_days=1"/> | |
</options> | |
<args> | |
<arg value="logs.txt"/> | |
</args> | |
</appcfg> | |
</target> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment