How can I make a Node.js setup reproducible?
The same project needs to behave consistently on developer machines, in CI and after deployment. Which versions, dependencies and configuration should be recorded?
ReadMeFeed / Community knowledge
Real questions. Useful conversations. Find the people who know your stack.
The same project needs to behave consistently on developer machines, in CI and after deployment. Which versions, dependencies and configuration should be recorded?
An upgrade needs a compatibility check, a tested release and a recovery path. Which changes deserve particular attention before the new version reaches production?
I have an issue with IPv6 on my server. I have nginx configured to listen on port 443 from IPv4 and IPv6. And it works great: my webiste is available form Internet with TLS enabled. Things get complicated when I activate nftables: when I am accessing my website from IPv4 it works, but when I access it from IPv6 connections time out :( Output of sudo nft list
An upgrade needs a compatibility check, a tested release and a recovery path. Which changes deserve particular attention before the new version reaches production?
I have following code for Azure AD authentication: services .AddAuthorization(options => { options.AddPolicy(name, builder => { builder .AddAuthenticationSchemes(AzureADDefaults.AuthenticationScheme) .RequireAuthenticatedUser(); }); }) .AddAuthentication(AzureADDefaults.AuthenticationScheme) .AddAzureAD(options => { configuration.Bind("AzureAd", opt
We are migrating an application from AWS to GCP. In AWS, we use Cognito service for maintaining different types of users inside userpools (for example: SSO users has different userpool and users with email and password are configured in different userpool, for MFA users, they have different user pool) In AWS Cognito, we also leverage certain functionalities
im currently going through the docs of helm, and there have been at least 3 different uses for the dot (.), is there any specific definition for it? and does it have something in common with the bash use (actual folder/files)? some cases in the documentation This print the accesed files in the range called before? {{- $files := .Files }} {{- range tuple "con
I have a few custom profiles in Windows Terminal, as shown in the settings menu: How do I make a desktop shortcut which I can double click that launches windows terminal with one of these profiles?
A failure needs to be narrowed down before settings are changed or operations retried. Which evidence best separates application errors from environment and dependency problems?