2
Use python
, Django
on a server with CloudFoundry
installed. There, I can keep my requirements.txt
with all the dependencies of my application and, for security, I always keep the exact name of the version of each plugin to avoid unexpected crashes for incompatibility with new versions.
Werkzeug==1.0.0.2
Django==1.11
What are the best practices to follow the versions of my dependencies in a "serious" (large) application? I subscribe to each plugin’s email distribution lists to receive update information but they don’t always exist.
I imagine this question is applicable to other environments/frameworks.
If instead of me asking the best ones, I asked what options are available, would I reopen? Or is it still too wide?
– Leonardo Pessoa