-
Notifications
You must be signed in to change notification settings - Fork 13
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 the new Frigg Serverless Plugin #352
base: formatter-on-mock-integration
Are you sure you want to change the base?
Conversation
…igrate off serverless?) that creates the queues in the localstack SQS instead of requiring the user to run a bash script/command. Also sets the stage to do a lot more, now that I/we know how to write plugins (pretty easy actually). TODO: [] Webpack fix? [] Start localstack? Check to see if it's running? [] Allow a flag to determine what to run (THIS ONE IS CRITICAL FOR WORKING WITH PROD)
Warning This pull request is not mergeable via GitHub because a downstack PR is open. Once all requirements are satisfied, merge this PR as a stack on Graphite.
This stack of pull requests is managed by Graphite. Learn more about stacking. |
Quality Gate passedIssues Measures |
}); | ||
|
||
const sqs = new AWS.SQS(); | ||
// Find the environment variables that we nee dto override and create an easy map |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The comment contains a typo. Please correct 'nee dto' to 'need to' for improved readability:
// Find the environment variables that we nee dto override and create an easy map | |
// Find the environment variables that we need to override and create an easy map |
Spotted by Graphite Reviewer
Is this helpful? React 👍 or 👎 to let us know.
Adds the new Frigg Serverless Plugin (which, may be obsolete once we migrate off serverless?) that creates the queues in the localstack SQS instead of requiring the user to run a bash script/command.
This plugin initializes during the serverless offline command, creating SQS queues in localstack based on the custom configuration. It also updates the environment variables with the newly created queue URLs.
Also sets the stage to do a lot more, now that I/we know how to write plugins (pretty easy actually).
TODO:
[] Webpack fix?
[] Start localstack? Check to see if it's running?
[] Allow a flag to determine what to run (THIS ONE IS CRITICAL FOR WORKING WITH PROD)