go.chromium.org/luci@v0.0.0-20250314024836-d9a61d0730e6/tokenserver/testing/devserver.sh (about)

     1  #!/bin/bash
     2  # Copyright 2016 The LUCI Authors. All rights reserved.
     3  # Use of this source code is governed under the Apache License, Version 2.0
     4  # that can be found in the LICENSE file.
     5  
     6  # devserver.sh launches local GAE dev server with the token server instance.
     7  
     8  cd $(dirname $0)
     9  . ./include.sh
    10  
    11  cd ../appengine
    12  gae.py devserver -A "$CLOUD_PROJECT_ID" -- \
    13    --port "$DEVSERVER_PORT" \
    14    --admin_port "$DEVSERVER_ADMIN_PORT" \
    15    --storage_path "$WORKING_DIR/gae_storage"