Update code on production env where we have live users all time

Our app is in prod mode now. How can I update the server code? Issue: It might have a chance that someone is accessing a server or doing some CRUD. It may impact the data and we have some payment-related things as well. >Solution : A reasonably easy and straight-forward way is a blue-green deployment.… Read More Update code on production env where we have live users all time

How to have and read an environment file after an angular applicastion has been built

I’m building an angular application. This angular application will be delivered to multiple clients with differents needs and infrastructure. It will need several values(by example backend server, title, …) that should be configurable by the customer when doing the installation of this. In debug, I can totally imagine those values coming from the environnments/environments.ts file,… Read More How to have and read an environment file after an angular applicastion has been built