# gissue-1391 **Repository Path**: mirrors_stephenplusplus/gissue-1391 ## Basic Information - **Project Name**: gissue-1391 - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-11-23 - **Last Updated**: 2026-07-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README 1. Clone repo 1. `cd` into it 1. Edit `test.js` with your project ID\* and credentials\** ```diff - var gcs = gcloud.storage(); + var gcs = gcloud.storage({ + projectId: 'project-id', + keyFilename: '/path/to/service/key.json' + }); ``` \* not necessary if you have `GCLOUD_PROJECT` env var set
\** not necessary if you are logged in with the gcloud SDK 1. Edit `test.js` with the name of your bucket: ```diff - var myBucket = gcs.bucket('stephen-has-a-new-bucket'); + var myBucket = gcs.bucket('YOUR_BUCKET_NAME'); ``` 1. Install npm dependencies and run tests: ```sh $ npm install $ NODE_DEBUG=request npm test ```