Lessons with tag: jets

Found 17 results

Search Tips:

To OR search terms: "terraform aws"

To AND search terms: "+terraform +aws"

To filter or reject search terms: "-aws"

Rails Serverless Sidekiq Scheduler with CloudWatch Scheduled Event Rules and Jets

June 2, 2024
We'll show how Jets can take your existing config/sidekiq.yml scheduler config and deploy it. Jets creates CloudWatch Scheduled Event Rules and Lambda Functions so you don't need to run a server to manage the traditional clock process. It's "serve...
12:34

Rails Jobs Multiple SQS Queues and AWS Lambda with Jets

June 2, 2024
We'll show you how to create multiple SQS Queues and dedicated Lambda functions with Jets in this video. It's just one line of configuration. config/jets/deploy.rb Jets.deploy.configure do config.job.enable = true config.job.additional_queues...
7:17

Rails ActiveJob on AWS Lambda and SQS Queue with Jets

June 1, 2024
We'll demo how Jets Jobs work. They are just Rails Jobs with a jets_job queue adapter. Except, all the resources to handle processing are serverless resources: SQS Queue and Lambda Functions. This removes the need for a daemon listening process an...
8:06

Rails API on AWS Lambda with Jets

June 1, 2024
We'll create a Rails API app from scratch and deploy it to Serverless AWS Lambda with Jets.
8:14

Jets Maintenance Mode

May 28, 2024
We'll show how to turn on and off a maintenance for a Jets deployed app. ❯ jets maintenance Commands: jets maintenance:off # Turn off maintenance mode jets maintenance:on # Turn on maintenance mode jets maintenance:status # Show ...
6:39

Jets Dotenv CLI Command

May 27, 2024
We'll show you how the handle jets dotenv command. Cheatsheet ❯ jets dotenv Commands: jets dotenv:get NAME # Get env var from local files and SSM jets dotenv:list # Parse and list dotenv vars jets dotenv:set VALUES # Set SSM...
7:35

Jets Env CLI Command

May 27, 2024
We'll show you how the handle jets env command. Cheatsheet ❯ jets env Commands: jets env:get NAME # Get env vars for function jets env:list # List and show env vars jets env:set VALUES # Set env vars for function jets env:...
4:07

CloudFront CDN for Assets

May 27, 2024
We'll show you how easy it is to deploy a CloudFront distribution for to serve your assets. It's just a few lines of configuration. config/jets/deploy.rb Jets.deploy.configure do config.assets.cloudfront.enable = true config.assets.cloudfront...
8:36

CloudFront CDN for Lambda Function URL

May 27, 2024
We'll show you how easy it is to set up a CloudFront CDN in front of the Lambda Function URL. It's just a few lines of configuration. config/jets/deploy.rb Jets.deploy.configure do config.lambda.url.cloudfront.enable = true config.lambda.url.cl...
7:24

Serverless Rails on AWS Lambda with Jets

May 26, 2024
We'll go through the Jets Learn Guide with Rails. It makes running Rails on AWS Lambda easy. https://docs.rubyonjets.com/docs/learn/rails/
22:23

How AWS Lambda Scaling Works: jets concurrency

May 26, 2024
We'll explain how AWS Lambda scaling works. Lambda calls it reserved and provisioned concurrency. Learn about their differences. And learn these jets commands that make it easy to test different concurrency settings jets concurrency:info jets conc...
10:49

REPL on AWS Lambda jets exec

May 26, 2024
Showing you one of my favorite commands: jets exec It's a REPL console that you can use to debug the AWS Lambda environment. You can run bash commands to explore and see how Lambda works.
3:50

Releases and Rollback with Ruby on Jets

January 3, 2024
A demo of the jets releases and jets rollback command. This command is available with Jets Pro. https://www.rubyonjets.com
2:33

Upgrade Tool for Ruby on Jets

January 3, 2024
A demo of the jets-upgrade tool. We'll take jets 4 project and run the jets-upgrade go command on it. It'll help you understand what will happen when you run the tool. It's unfeasible to account for all cases and Jets apps. This script cannot ...
4:07

Getting Started HTML Project with Ruby on Jets

January 3, 2024
We'll go through the Jets Getting Started Learn Guide with a HTML Jets Project. We'll build a Jets project. Test it locally Deploy it to AWS Lambda Test it on AWS Lambda Clean up and delete it all, back to a clean slate.
16:42

Getting Started Job Project with Ruby on Jets

January 2, 2024
We'll go through the Jets Getting Started Learn Guide with a Job Jets Project. We'll build a Jets project. Test it locally Deploy it to AWS Lambda Test it on AWS Lambda Clean up and delete it all, back to a clean slate. Jets can be used to run...
16:13

Getting Started API Project with Ruby on Jets

January 2, 2024
We'll go through the Jets Getting Started Learn Guide with a API Jets Project. We'll build a Jets project. Test it locally Deploy it to AWS Lambda Test it on AWS Lambda Clean up and delete it all, back to a clean slate. Jets can be use to buil...
20:11

BoltOps Tools