Advertisement
Guest User

debug logs

a guest
Feb 19th, 2018
253
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.63 KB | None | 0 0
  1. [debug] [2018-02-20T05:46:11.025Z] ----------------------------------------------------------------------
  2. [debug] [2018-02-20T05:46:11.027Z] Command: /usr/local/bin/node /usr/local/bin/firebase deploy --only functions:addFacilityStaff -P mycure-ab311
  3. [debug] [2018-02-20T05:46:11.027Z] CLI Version: 3.16.0
  4. [debug] [2018-02-20T05:46:11.027Z] Platform: darwin
  5. [debug] [2018-02-20T05:46:11.027Z] Node Version: v8.9.3
  6. [debug] [2018-02-20T05:46:11.028Z] Time: Tue Feb 20 2018 13:46:11 GMT+0800 (+08)
  7. [debug] [2018-02-20T05:46:11.028Z] ----------------------------------------------------------------------
  8. [debug]
  9. [debug] [2018-02-20T05:46:11.044Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
  10. [debug] [2018-02-20T05:46:11.045Z] > authorizing via signed-in user
  11. [debug] [2018-02-20T05:46:11.047Z] >>> HTTP REQUEST GET https://admin.firebase.com/v1/projects/mycure-ab311
  12.  
  13. Tue Feb 20 2018 13:46:11 GMT+0800 (+08)
  14. [debug] [2018-02-20T05:46:12.026Z] <<< HTTP RESPONSE 200
  15. [debug] [2018-02-20T05:46:12.027Z] >>> HTTP REQUEST GET https://admin.firebase.com/v1/database/mycure-ab311/tokens
  16.  
  17. Tue Feb 20 2018 13:46:12 GMT+0800 (+08)
  18. [debug] [2018-02-20T05:46:12.872Z] <<< HTTP RESPONSE 200
  19. [info]
  20. [info] === Deploying to 'mycure-ab311'...
  21. [info]
  22. [info] i deploying functions
  23. [debug] [2018-02-20T05:46:14.011Z] > [functions] package.json contents: {
  24. "private": true,
  25. "name": "mycure-fns",
  26. "version": "0.1.0",
  27. "description": "Mycure fb functions",
  28. "author": "John Leonard Tubig",
  29. "license": "ISC",
  30. "repository": {
  31. "type": "git",
  32. "url": "git+https://EnoMetsys@bitbucket.org/mycure-dev/mycure-fns.git"
  33. },
  34. "pre-commit": [
  35. "lint"
  36. ],
  37. "semistandard": {
  38. "parser": "babel-eslint"
  39. },
  40. "keywords": [
  41. "mycure",
  42. "v3",
  43. "api",
  44. "firebase",
  45. "functions"
  46. ],
  47. "scripts": {
  48. "lint": "semistandard --fix | snazzy",
  49. "lint:check": "semistandard",
  50. "test:watch": "nodemon --watch 'src/**/*.js' --exec 'printf \"\\033c\" && npm run --silent test'",
  51. "test": "tape -r ./test -r ./src/globals 'src/**/*.spec.js' | tap-spec --color",
  52. "mockserver": "eopsin -v -c --data test/mock-data.json",
  53. "prebuild:rls": "rm -f database.rules.json",
  54. "prebuild:dst": "rm -rf functions",
  55. "build:rls": "arges -p 'src/**/*.bolt?(.js)'",
  56. "build:dst": "babel src -d functions --ignore 'template/**,*.spec.js' --copy-files",
  57. "build": "run-s build:dst",
  58. "predeploy:pj": "[ -f functions/package.json ] && echo 'package.json exists' || cp package.json functions",
  59. "predeploy:nm": "[ -d functions/node_modules ] && echo 'node_modules exists' || cp -R -L node_modules functions/node_modules",
  60. "predeploy": "run-s build predeploy:pj predeploy:nm",
  61. "predeploy:only": "run-s predeploy",
  62. "deploy": "firebase deploy --only functions -P mycure-ab311",
  63. "deploy:only": "f() { for func in \"$@\"; do firebase deploy --only functions:\"$func\" -P mycure-ab311; done; }; f"
  64. },
  65. "dependencies": {
  66. "@topsi/services": "^3.1.0",
  67. "aes-js": "^3.1.0",
  68. "cors": "^2.8.4",
  69. "crypto": "^1.0.1",
  70. "crypto-js": "^3.1.9-1",
  71. "date-fns": "^1.29.0",
  72. "debug": "^2.6.8",
  73. "filesize.js": "^1.0.2",
  74. "firebase-admin": "^5.2.1",
  75. "firebase-functions": "^0.6.3",
  76. "forEachAsync": "^3.0.0",
  77. "hogan.js": "^3.0.2",
  78. "js-md5": "^0.6.0",
  79. "json-size": "^1.0.0",
  80. "jsonwebtoken": "^8.0.1",
  81. "lodash": "^4.17.4",
  82. "moment": "^2.18.1",
  83. "moment-timezone": "^0.5.13",
  84. "request": "^2.82.0",
  85. "rxjs": "^5.4.3",
  86. "sendgrid": "^5.2.3",
  87. "stripe": "^4.24.1",
  88. "uid": "^0.0.2"
  89. },
  90. "devDependencies": {
  91. "@enometsys/pantheon": "^1.3.1",
  92. "babel-cli": "^6.24.1",
  93. "babel-core": "^6.25.0",
  94. "babel-eslint": "^7.2.3",
  95. "babel-plugin-transform-function-bind": "^6.22.0",
  96. "babel-plugin-transform-object-rest-spread": "^6.23.0",
  97. "babel-polyfill": "^6.23.0",
  98. "babel-preset-env": "^1.5.2",
  99. "babel-register": "^6.24.1",
  100. "dotenv-safe": "^4.0.4",
  101. "firebase": "^4.1.3",
  102. "firebase-bolt": "^0.8.2",
  103. "lodash": "^4.17.4",
  104. "nodemon": "^1.11.0",
  105. "npm-run-all": "^4.0.2",
  106. "pre-commit": "^1.2.2",
  107. "semistandard": "^11.0.0",
  108. "sinon": "^3.2.1",
  109. "sleep-promise": "^2.0.0",
  110. "snazzy": "^7.0.0",
  111. "tap-spec": "^4.1.1",
  112. "tape": "^4.6.3",
  113. "tape-async": "^2.3.0"
  114. }
  115. }
  116. [info] i functions: ensuring necessary APIs are enabled...
  117. [debug] [2018-02-20T05:46:14.013Z] >>> HTTP REQUEST GET https://servicemanagement.googleapis.com/v1/services/cloudfunctions.googleapis.com/projectSettings/mycure-ab311?view=CONSUMER_VIEW
  118.  
  119. Tue Feb 20 2018 13:46:14 GMT+0800 (+08)
  120. [debug] [2018-02-20T05:46:14.014Z] >>> HTTP REQUEST GET https://servicemanagement.googleapis.com/v1/services/runtimeconfig.googleapis.com/projectSettings/mycure-ab311?view=CONSUMER_VIEW
  121.  
  122. Tue Feb 20 2018 13:46:14 GMT+0800 (+08)
  123. [debug] [2018-02-20T05:46:15.607Z] <<< HTTP RESPONSE 200
  124. [debug] [2018-02-20T05:46:15.646Z] <<< HTTP RESPONSE 200
  125. [info] ✔ functions: all necessary APIs are enabled
  126. [debug] [2018-02-20T05:46:15.647Z] >>> HTTP REQUEST GET https://appengine.googleapis.com/v1/apps/mycure-ab311
  127.  
  128. Tue Feb 20 2018 13:46:15 GMT+0800 (+08)
  129. [debug] [2018-02-20T05:46:15.648Z] >>> HTTP REQUEST GET https://apikeys.googleapis.com/v1/projects/mycure-ab311/apiKeys
  130.  
  131. Tue Feb 20 2018 13:46:15 GMT+0800 (+08)
  132. [debug] [2018-02-20T05:46:16.912Z] <<< HTTP RESPONSE 200
  133. [debug] [2018-02-20T05:46:16.944Z] <<< HTTP RESPONSE 200
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement