How to use ESBuild in Rails with JSBundling Discussion
Any luck on this? I am having the same issue on Heroku.

24
General
How to use Stripe Checkout in Rails Discussion
Hey Chris,
How would you set up the controller for multiple prices? I'm currently creating 8 sessions for 4 monthly and 4 yearly prices, but it takes a while to load the page and I don't know that...

16
General
Having trouble setting up Bootstrap + jQuery + easyAutocomplete in Rails 6
Me too, same situation here, anyone fixed this issue?

3
Rails
Deploy Ubuntu 20.04 Focal Fossa Discussion
Thanks a lot for this tutorial!
I would only add:
If you want to have **http2** enabled then you need to add http2 to the listen configuration of nginx:
```
server {
listen 443 ssl http2;
list...

41
General
JSON Web Tokens with Devise & Warden Discussion
I learned in the tutorial from the 53rd second that this authentication method is experimental and not the best. I will love to know the best way to go about it. I have a project I want to use devi...

16
General
API HTTP Requests using Faraday Discussion
Just cloned the repo and am running into the same issue:
```
irb(main):001:0> client
Traceback (most recent call last):
2: from bin/console:21:in `'
1: from (irb):1
NameE...

6
General
Rails for Beginners Part 23: Rails Credentials Discussion
I had a weird issue where running the "rails credentials:edit --environment=development" command (from the integrated terminal in VSCode) would open up a new development.yml file instead of the exi...

21
General
The Rails db:system:change command Discussion
I get this:
Running via Spring preloader in process 48851
invalid option: --to=postgresql
What could be the issue? I am using Rails 6.1.4.1

8
General
How to use Bootstrap with CSS bundling in Rails Discussion
Is this not against the whole idea of importmap and pining the javascript resources? To add jsbundling-rails ?

24
General
Rails for Beginners Part 12: Validations Discussion
Not sure if anything can be done about this other than raising the bottom of the terminal window a bit higher, but the Video controls constantly hide what you're doing since you're typing in at the...

10
General
Eigenclasses Discussion
Ah - It looks like I have to wait a few days (I hope)

2
General
Using the Trix Editor plus File Upload Attachments Discussion
Thanks for the episode. Trix is easy and works great but is there a way to style the images. I managed to get them to align left or right but cannot get them to float left or right with text aroun...

54
General
Dynamic Select Fields in Rails with Hotwire Discussion
Found that this is harder if using `options_from_collection_for_select` so gave up and ended up plucking my main value (in this case `name`) from the collection and using `options_for_select` then ...

16
General
Rails for Beginners Part 5: Routes and Route Types Discussion
Hi, I like this playlist very much.
After seeing this video I had one doubt in my mind.
Is it necessary to create files under controller folder with names in format url_controller.rb. Can't we name...

16
General