-
-
Save wenindoubt/2d04f64c447b4f37e2195a8eec6076b0 to your computer and use it in GitHub Desktop.
Revisions
-
fredericbarthelet revised this gist
Oct 14, 2020 . 1 changed file with 0 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,3 @@ // Lambda configuration is at the same location of the actual handler's code export default { -
fredericbarthelet created this gist
Oct 11, 2020 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,2 @@ export { default as hello } from './hello'; export { default as goodbye } from './goodbye'; This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,14 @@ import path from 'path'; // Lambda configuration is at the same location of the actual handler's code export default { handler:'hello.main', events: [ { httpApi: 'GET /hello'} ] } const main = () => { return 'Hello from lambda' } This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,12 @@ import functions from './functions'; const serverlessConfiguration: Serverless = { service: 'myServerlessService', provider: { name: 'aws', runtime: 'nodejs12.x' }, functions }; module.exports = serverlessConfiguration;