diff --git a/examples/servers/reading-list/README.md b/examples/servers/reading-list/README.md index 8dfc39337..5fe1884e3 100644 --- a/examples/servers/reading-list/README.md +++ b/examples/servers/reading-list/README.md @@ -6,7 +6,7 @@ This service utilizes Google Cloud Datastore and is set up to be built and publi Instead of utilizing NYT's auth, this example leans on Google OAuth and Google Cloud Endpoints for user identity. -To run locally, have the latest version of `gcloud` installed and execute the `./server/run_local.sh` script to start up the Datastore emulater and the reading list server. +To run locally, have the latest version of `gcloud` installed and execute the `./run_local.sh` script to start up the Datastore emulater and the reading list server. A few highlights of this service worth calling out: diff --git a/examples/servers/reading-list/server/run_local.sh b/examples/servers/reading-list/run_local.sh similarity index 86% rename from examples/servers/reading-list/server/run_local.sh rename to examples/servers/reading-list/run_local.sh index bd29804bd..fad768d56 100755 --- a/examples/servers/reading-list/server/run_local.sh +++ b/examples/servers/reading-list/run_local.sh @@ -5,4 +5,4 @@ export DATASTORE_EMULATOR_HOST=localhost:8082 gcloud beta emulators datastore start --host-port=localhost:8082 & -go run main.go +go run ./server/main.go