This repository contains samples that the documentation on Google Cloud Platform references. Samples for a client library should be added to the client repository, not this repository. (For example, the functions
folder is reserved for samples used in cloud.google.com/functions). If you wrote a great sample but it is not used in Google's official documentation, there are better suited places to publish it such as a community tutorial.
-
Obtain authentication credentials. Depending on the sample, you need to enable the appropriate APIs in the Cloud Console.
gcloud auth application-default login
-
Change directory to one of the sample folders, e.g.
datastore
.cd datastore/
-
Install the dependencies.
npm install
-
Run the tests.
npm test
All samples must have tests. We use mocha
as testing framework.
Add a build configuration file (.cfg
) for your samples in .kokoro/
. Check existing config files for the right format.
All tests need a corresponding job file outside of GitHub. If you are a Googler, please provide the CL alongside your PR. See the internal codelab for Kokoro for details. If you don't work at Google, the person reviewing your PR will create the job config for you.
The Google Cloud Samples Style Guide is considered the primary guidelines for all Google Cloud samples.
Samples in this repository also follow the JavaScript coding standards. See instructions below to run the linter to match our JavaScript coding standards:
-
Install dependencies at the root of the
nodejs-docs-samples
directory.npm install
-
Run the linter for all samples, including the ones you're adding.
npm run lint
Required
tests need to pass. Tests that are not required are expected to fail, they are usually work in progress.