Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2017
268
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.79 KB | None | 0 0
  1. Dynamodb Local Started, Visit: http://localhost:8000/shell
  2. Serverless: Starting Offline: dev/us-east-1.
  3. [offline] options: { host: 'localhost',
  4. location: '.',
  5. port: 3000,
  6. prefix: '/',
  7. stage: 'dev',
  8. region: 'us-east-1',
  9. noTimeout: false,
  10. noEnvironment: false,
  11. dontPrintOutput: false,
  12. httpsProtocol: '',
  13. skipCacheInvalidation: false,
  14. corsAllowOrigin: [ '*' ],
  15. corsAllowHeaders: [ 'accept', 'content-type', 'x-api-key' ],
  16. corsAllowCredentials: true,
  17. apiKey: '-xxx-',
  18. corsConfig:
  19. { origin: [ '*' ],
  20. headers: [ 'accept', 'content-type', 'x-api-key' ],
  21. credentials: true } }
  22. [offline] globalBabelOptions: undefined
  23. [offline] funOptions {
  24. "funName": "createPerson",
  25. "handlerName": "create",
  26. "handlerPath": "/Users/jimt/dev/examples/aws-node-rest-api-with-dynamodb-and-offline/people/create",
  27. "funTimeout": 30000
  28. }
  29.  
  30. [offline] createPerson runtime nodejs4.3
  31. Serverless: Routes for createPerson:
  32. [offline] funOptions {
  33. "funName": "listPerson",
  34. "handlerName": "list",
  35. "handlerPath": "/Users/jimt/dev/examples/aws-node-rest-api-with-dynamodb-and-offline/people/list",
  36. "funTimeout": 30000
  37. }
  38.  
  39. [offline] listPerson runtime nodejs4.3
  40. Serverless: Routes for listPerson:
  41. [offline] funOptions {
  42. "funName": "createTodo",
  43. "handlerName": "create",
  44. "handlerPath": "/Users/jimt/dev/examples/aws-node-rest-api-with-dynamodb-and-offline/todos/create",
  45. "funTimeout": 30000
  46. }
  47.  
  48. [offline] createTodo runtime nodejs4.3
  49. Serverless: Routes for createTodo:
  50. Serverless: POST /todos
  51. [offline] funOptions {
  52. "funName": "listTodos",
  53. "handlerName": "list",
  54. "handlerPath": "/Users/jimt/dev/examples/aws-node-rest-api-with-dynamodb-and-offline/todos/list",
  55. "funTimeout": 30000
  56. }
  57.  
  58. [offline] listTodos runtime nodejs4.3
  59. Serverless: Routes for listTodos:
  60. Serverless: GET /todos
  61. [offline] funOptions {
  62. "funName": "getTodo",
  63. "handlerName": "get",
  64. "handlerPath": "/Users/jimt/dev/examples/aws-node-rest-api-with-dynamodb-and-offline/todos/get",
  65. "funTimeout": 30000
  66. }
  67.  
  68. [offline] getTodo runtime nodejs4.3
  69. Serverless: Routes for getTodo:
  70. Serverless: GET /todos/{id}
  71. [offline] funOptions {
  72. "funName": "updateTodo",
  73. "handlerName": "update",
  74. "handlerPath": "/Users/jimt/dev/examples/aws-node-rest-api-with-dynamodb-and-offline/todos/update",
  75. "funTimeout": 30000
  76. }
  77.  
  78. [offline] updateTodo runtime nodejs4.3
  79. Serverless: Routes for updateTodo:
  80. Serverless: PUT /todos/{id}
  81. [offline] funOptions {
  82. "funName": "deleteTodo",
  83. "handlerName": "delete",
  84. "handlerPath": "/Users/jimt/dev/examples/aws-node-rest-api-with-dynamodb-and-offline/todos/delete",
  85. "funTimeout": 30000
  86. }
  87.  
  88. [offline] deleteTodo runtime nodejs4.3
  89. Serverless: Routes for deleteTodo:
  90. Serverless: DELETE /todos/{id}
  91.  
  92. Serverless: Offline listening on http://localhost:3000
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement