Skip to content

Latest commit

 

History

History

step03

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 

STEP03: バージョンアップをしてみよう

新しく学ぶこと

  • GAE上のアプリのバージョンアップのしかた

デプロイの仕方

$ gcloud app deploy --project gohandson-gacha --version v2

Datastoreのエミュレーターのインストールの仕方

$ gcloud components install cloud-datastore-emulator

Datastoreのエミュレーターの起動

$ gcloud beta emulators datastore start --project gohandson-gacha

動かし方

Datastoreエミュレーターに接続するには環境変数DATASTORE_EMULATOR_HOSTlocalhost:8081を設定する必要がある。

$ go build -v -o step03
$ DATASTORE_EMULATOR_HOST=localhost:8081 ./step03

または

$ DATASTORE_EMULATOR_HOST=localhost:8081 go run .