We use Jet's for much of our application, Until now we have worked with the API locally using jets server but when building jobs, we have relied on mostly unit test. I am considering using my 20% time at work to begin the process of adding localstack to jets beginning with what is probably our most used lambda triggers (SNS/SQS/DynamoDb Stream).
Looking to get some feedback about this.
Motivation
To get a fully working local jets environment.
Unresolved Questions
1: In the ruby world, its very common to be using Rails with Sidekiq. Generally you start the rails server and sidekiq independently. ie rails s & sidekiq, I wondering if we should do the same jets server & jets jobs (bad name)?
We use Jet's for much of our application, Until now we have worked with the API locally using
jets server
but when building jobs, we have relied on mostly unit test. I am considering using my 20% time at work to begin the process of adding localstack to jets beginning with what is probably our most used lambda triggers (SNS/SQS/DynamoDb Stream).Looking to get some feedback about this.
Motivation
To get a fully working local jets environment.
Unresolved Questions
1: In the ruby world, its very common to be using Rails with Sidekiq. Generally you start the rails server and sidekiq independently. ie
rails s
&sidekiq
, I wondering if we should do the samejets server
&jets jobs
(bad name)?