first pass
Showing
.gitignore
0 → 100644
.gitlab-ci.yml
0 → 100644
app.js
0 → 100644
app.yaml
0 → 100644
package-lock.json
0 → 100644
This source diff could not be displayed because it is too large. You can view the blob instead.
package.json
0 → 100644
{ | ||
"name": "myapp-express", | ||
"description": "Simple Hello World Node.js sample for GCP App Engine Flexible Environment.", | ||
"version": "0.0.1", | ||
"private": true, | ||
"license": "MIT", | ||
"author": "Isaac Johnson", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://gitlab.com/princessking/gcpclickupdemo.git" | ||
}, | ||
"engines": { | ||
"node": ">=8.0.0" | ||
}, | ||
"scripts": { | ||
"deploy": "gcloud app deploy", | ||
"start": "node app.js", | ||
"system-test": "repo-tools test app", | ||
"test": "npm run system-test", | ||
"e2e-test": "repo-tools test deploy" | ||
}, | ||
"dependencies": { | ||
"express": "^4.16.3" | ||
}, | ||
"devDependencies": { | ||
"@google-cloud/nodejs-repo-tools": "^3.3.0", | ||
"body-parser": "^1.19.0", | ||
"request": "^2.88.2" | ||
}, | ||
"cloud-repo-tools": { | ||
"test": { | ||
"app": { | ||
"msg": "Hello, world from Express!" | ||
} | ||
}, | ||
"requiresKeyFile": true, | ||
"requiresProjectId": true | ||
} | ||
} |
Please register or sign in to comment