Targeting the real datastore:
cd auth_service/services/frontend go run main.go -cloud-project chrome-infra-auth-dev
The server will be available at http://localhost:8800.
Prefer to test everything locally. If you must deploy to GAE, use:
cd auth_service gae.py upload --target ${USER} -A chrome-infra-auth-dev --app-dir services default backend
This will upload versions for both default
and backend
services, with target version name ${USER}
.
Note that it doesn't switch the default serving version. If you really need to set a manually uploaded version to be the default (not recommended), you may use Cloud Console or gcloud app services set-traffic
to switch the serving version of the default
and backend
services.
Deployment to staging and production are performed by gae-deploy builder. Deploying directly to production using gae.py
is strongly ill-advised.