Sprockets::FileNotFound in Users::Sessions#new
You can try to run the `bundle install` command in your project directory to ensure all gems are properly installed and up to date. Another potential solution is to verify gem dependencies. build n...

5
Rails
URL Based multi tenancy
It's easier than you might think! You just point the domain to the server and Rails doesn't care what domain it is.
Then you can use like ActsAsTenant to match the domain with an Account. Or Ac...

11
General
Could I deploy two different apps on the same server?
Absolutely! If you're interested in learning more about setting smart goals as a developer, I recommend checking out the blog post on "[Smart Goals for Developers Examples](https://arounda.agency/b...

9
Servers
[ActiveRecord::RecordInvalid - Validation failed: Blog must exist]

8
Rails
Dynamically create sass variables in rails
I have a multi-tenant app where each tenant can set their primary and accent colors. Is there a way i can grab those values and insert them into a sass file on page load? I"m using rails 5 and post...

7
CSS
What is the best way to add a dynamic active class to a link with Tailwind CSS?

7
CSS
How to limit comment nesting with Hotwire and Turbo?
In order to limit comment nesting with Hotwire and Turbo, you can modify the same code that was used in the original version of the application. The main difference is that you will need to handle ...

4
Rails