Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
3737e19
DOC: API user manual.
aurelien45100 Apr 28, 2022
e263230
DOC: Installation instructions on AWS (S3, Lambda, DynamoDB, API Gate…
aurelien45100 Apr 28, 2022
136727f
FEATURE: Put an item on DynamoDB
aurelien45100 Apr 28, 2022
833df4e
Update INSTALL.md
aurelien45100 May 20, 2022
6f04f1a
Update README.md
aurelien45100 May 20, 2022
942d9d1
FEATURE: Added the code for the HandleFileAddedInS3 function
aurelien45100 May 29, 2022
02d8be7
Merge branch 'v7' of https://github.com/aurelien45100/Steatite into v7
aurelien45100 May 29, 2022
da9aa13
Update README.md
aurelien45100 May 29, 2022
967a688
Update README.md
aurelien45100 May 30, 2022
08dad5b
FEATURE: Added the code for the getAttributes function
aurelien45100 May 30, 2022
9bbf684
Merge branch 'v7' of https://github.com/aurelien45100/Steatite into v7
aurelien45100 May 30, 2022
1d136d3
FEATURE: Updated the code for the getAttributes function
aurelien45100 May 30, 2022
7888331
FEATURE: Updated the code for the getOptimizedPicture function
aurelien45100 Jun 10, 2022
9905e5b
FEATURE: Updated the code for the HandleFileAddedInS3 function
aurelien45100 Jun 10, 2022
e058d1b
FEATURE: Updated the code for the getAttributes function
aurelien45100 Jun 15, 2022
4c5f915
FEATURE: Updated the code for the getOptimizedPicture function
aurelien45100 Jun 15, 2022
5cf96cb
FEATURE: Created the code for the getThumbnailOfImage function
aurelien45100 Jun 15, 2022
43a4f25
FEATURE: Updated the code for the HandleFileAddedInS3 function
aurelien45100 Jun 15, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,8 @@ build
# misc
.DS_Store

.vscode
*.zip
src/HandleFileAddedInS3/handleFileAddedInS3.zip
src/getAttributes/getAttributes.zip
.vscode/launch.json
34 changes: 34 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
{
"configurations": [
{
"type": "aws-sam",
"request": "direct-invoke",
"name": "testFunctionLinkedToBucket:lambda_function.handler (nodejs12.x)",
"invokeTarget": {
"target": "code",
"projectRoot": "${workspaceFolder}/testFunctionLinkedToBucket",
"lambdaHandler": "lambda_function.handler"
},
"lambda": {
"runtime": "nodejs12.x",
"payload": {},
"environmentVariables": {}
}
},
{
"type": "aws-sam",
"request": "direct-invoke",
"name": "link-lambda-db:lambda_function.handler (nodejs14.x)",
"invokeTarget": {
"target": "code",
"projectRoot": "${workspaceFolder}/link-lambda-db",
"lambdaHandler": "lambda_function.handler"
},
"lambda": {
"runtime": "nodejs14.x",
"payload": {},
"environmentVariables": {}
}
}
]
}
Loading