Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add new serverless-framework-sqs-dynamodb kit #709

Open
wants to merge 62 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
62 commits
Select commit Hold shift + click to select a range
567ff6a
init commit
dustinsgoodman Dec 22, 2022
f0fed2e
add docker-compose.yml with dynamodb and elasticmq config
dustinsgoodman Dec 22, 2022
fd662b2
add tsconfig
dustinsgoodman Dec 22, 2022
916f815
add .editorconfig
dustinsgoodman Dec 22, 2022
0f2bd12
add serverless configuration
dustinsgoodman Dec 22, 2022
734e6bf
add initial healthcheck
dustinsgoodman Dec 22, 2022
92fea91
add project linting
dustinsgoodman Dec 22, 2022
b94767c
add jest and related config
dustinsgoodman Dec 23, 2022
873a7e6
add comment to serverless config about profiles
dustinsgoodman Dec 23, 2022
154e8b1
add isOffline util
dustinsgoodman Dec 23, 2022
53bfa47
add dynamodb client
dustinsgoodman Dec 23, 2022
c5cec69
update dynamodb setup
dustinsgoodman Dec 23, 2022
0ff732d
remove serverless-dynamodb-local
dustinsgoodman Dec 23, 2022
055cb96
update eslint config
dustinsgoodman Dec 23, 2022
2858ec5
add path aliases
dustinsgoodman Dec 23, 2022
c204411
setup .env
dustinsgoodman Dec 23, 2022
a071b26
fix path aliases
dustinsgoodman Dec 23, 2022
74c90c8
update dynamodb/getClient to use correct client
dustinsgoodman Dec 23, 2022
0fc18c6
add technology type
dustinsgoodman Dec 23, 2022
7c32890
add technologies seed file
dustinsgoodman Dec 23, 2022
e1b9c89
readd serverless-dynamodb-local and fix config
dustinsgoodman Dec 23, 2022
9dac4e5
update README
dustinsgoodman Dec 23, 2022
6f617ab
update jest ignore paths to avoid build
dustinsgoodman Dec 24, 2022
047280f
add dynamodb and uuid packages
dustinsgoodman Dec 24, 2022
7a20a73
fix module reloading for lamdba
dustinsgoodman Dec 24, 2022
ebbe95c
enable typescript strict mod and new models alias
dustinsgoodman Dec 24, 2022
2905aca
update seed to use uuid
dustinsgoodman Dec 24, 2022
1c00f24
add process.env type defns
dustinsgoodman Dec 24, 2022
f0726d9
add technology CRUD endpoint config to serverless
dustinsgoodman Dec 24, 2022
b634c66
fix handler reference in update path
dustinsgoodman Dec 24, 2022
17423d1
add create & update zod schemas + types
dustinsgoodman Dec 24, 2022
2c59c35
add getErrorMessage util
dustinsgoodman Dec 24, 2022
b2eb850
fix tests for strict mode
dustinsgoodman Dec 25, 2022
f45bf79
disable no-empty-function lint rule
dustinsgoodman Dec 25, 2022
368e1fd
add aws-sdk-client-mock
dustinsgoodman Dec 25, 2022
e45ff75
add dynamodb utils
dustinsgoodman Dec 25, 2022
398eac5
add redis to project
dustinsgoodman Dec 25, 2022
08ed410
add cache utils
dustinsgoodman Dec 25, 2022
ce12f61
update test describes per https://bettertests.js.org/
dustinsgoodman Dec 27, 2022
ad0f533
add tests to technology functions
dustinsgoodman Dec 31, 2022
0f1c5ae
add technology api handlers
dustinsgoodman Dec 31, 2022
8536b17
fix errors in eslint config
dustinsgoodman Jan 1, 2023
8e2467c
fix lint and bundle optimizations
dustinsgoodman Jan 1, 2023
97bddbc
fix install of ioredis-mock
dustinsgoodman Jan 1, 2023
ee9398d
add deploy script
dustinsgoodman Jan 1, 2023
2a6151a
update readme
dustinsgoodman Jan 1, 2023
2efcd59
add swagger and configure endpoint docs
dustinsgoodman Jan 1, 2023
2c7ec1e
add queue examples
dustinsgoodman Jan 1, 2023
858ca82
update linting rules
dustinsgoodman Jan 1, 2023
7144919
fix caching bug in update
dustinsgoodman Jan 1, 2023
cfee852
fix autoswagger config
dustinsgoodman Jan 1, 2023
f507499
lock deps
dustinsgoodman Jan 1, 2023
3d3d021
update healthcheck endpoint
dustinsgoodman Jan 1, 2023
8a090f5
fix permissions
dustinsgoodman Jan 1, 2023
f6f373d
update readme
dustinsgoodman Jan 1, 2023
f6ea679
add new kit to website and CLI
dustinsgoodman Jan 1, 2023
c54d859
update docs to use npm by default
dustinsgoodman Jan 15, 2023
b33cd7b
update processors to optimize record handler instantiation
dustinsgoodman Jan 15, 2023
5012a6a
address PR feedback
dustinsgoodman Jan 15, 2023
c960a81
add notes about aws
dustinsgoodman Jan 15, 2023
d3c47ba
fix docker refernces in readme
dustinsgoodman Jan 17, 2023
fea8909
fix analyzer command
dustinsgoodman Jan 18, 2023
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
Prev Previous commit
Next Next commit
add deploy script
  • Loading branch information
dustinsgoodman committed Jan 1, 2023
commit ee9398dee0bbcd71737babea941683e026998e49
1 change: 1 addition & 0 deletions starters/serverless-framework-sqs-dynamodb/package.json
Original file line number Diff line number Diff line change
@@ -11,6 +11,7 @@
],
"scripts": {
"build": "sls package",
"deploy": "sls deploy",
"start": "SLS_DEBUG=* sls offline start --verbose",
"test": "jest --runInBand",
"lint": "eslint",