Local development requirements packages #5209
-
why did you decide to install the packages needed for production in local development environment ? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Because you develop for production. I'm using the Another thing that comes to my mind is that a production dependency can be incompatible with you local stack. That is not something I want to find out in production. I know, it is highly theoretical, but installing the dependencies has no downside to me. Feel free to read some about the change over here: #4838 |
Beta Was this translation helpful? Give feedback.
Because you develop for production.
I'm using the
capture_exception
function of sentry a lot. It should mean that I cannot run my code locally without installing thesentry-sdk
. Of course I can work around by writing code but I want my environments as equal as possible.Another thing that comes to my mind is that a production dependency can be incompatible with you local stack. That is not something I want to find out in production. I know, it is highly theoretical, but installing the dependencies has no downside to me.
Feel free to read some about the change over here: #4838