For further actions, you may consider blocking this person and/or reporting abuse
Hands-on debugging session: instrument, monitor, and fix
Join Lazar for a hands-on session where you’ll build it, break it, debug it, and fix it. You’ll set up Sentry, track errors, use Session Replay and Tracing, and leverage some good ol’ AI to find and fix issues fast.
Read next

AI Performance Breakthrough: New Method Cuts Costs 30% While Boosting Speed 25%
Mike Young -

Simple Training Trick Makes AI Better at Logic, Regardless of Information Order
Mike Young -

AI Maps Power Grid Weak Points in Milliseconds with 98.7% Accuracy
Mike Young -

Open Source: A Goldmine for Indie Hackers – Unleashing Creativity and Collaboration
Zhang Wei -
Top comments (1)
I started a RoR project. I use docker to easily install what I need (database, external tools...). In the root of my project, I've got a data folder containing all the docker volumes. The issue is when I run rails generate controller X, I don't know why but rails wants to access to the data folder (which is completely useless) and so, I have a permission denied for the data folder;
Any idea to avoid that unless changing the folder's permissions ? I don't want to break my containers.