This file contains 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
# Deployする | |
~$ appcfg.py update --noauth_local_webserver -A <Project Name> -V <Version Name> <Source directory> | |
# version の一覧を表示する | |
~$ appcfg.py list_versions --noauth_local_webserver -A <Project Name> | |
# ソースをダウンロードする (default のサービスでよい場合) | |
~$ appcfg.py download_app --noauth_local_webserver -A <Project Name> -V <Version Name> <Source directory> | |
# ソースをダウンロードする (サービスを指定する場合) | |
~$ appcfg.py download_app --noauth_local_webserver --module=<Service Name> -A <Project Name> -V <Version Name> <Source directory> |