HSHarshit Sahuinharshitsahu2311.hashnode.dev·1d ago · 12 min readEnvironment Variables, .env Files, and Vault Basics"Your application should know how to run, not what secrets it owns." One of the biggest mistakes beginners make in software development and DevOps is storing passwords, API keys, and database credent00
EJEva J Patelinevapatel123.hashnode.dev·Jul 29 · 7 min readStop Uploading Your API Keys to GitHub : GitHub Secrets Explained in Easy Words "I accidentally pushed my OpenAI API key to GitHub." Congratulations. You just entered the danger zone. No, seriously. If your repository is public, there's a good chance bots have already seen it. No10
ADAniket Deyinblog.aniketdey.in·Jul 15 · 3 min readStop Committing Secrets: Automatically Generate .env.example with gen-envexWhen working on Node.js, React, Next.js, or any modern application, one of the first things you'll create is a .env file. It stores everything from database credentials to API keys and authentication 53CM
SAStefan Adolfinstadolf.hashnode.dev·Jul 7 · 6 min readYour .env Setup Is a Design DecisionEvery project starts the same way. You create a .env, paste in a database URL, and move on. Six months later there are five of them, nobody quite remembers which one wins, and someone loses an afterno00
DNDoug Niccuminblog.dniccumdesign.com·Jun 25 · 8 min readWe kept leaking .env files across environments—here’s how I solved itA quick story Last year when I onboarded a new developer on the team I was managing, I quickly ran into a couple issues with the onboarding process. First, I realized our documentation was pretty bad 00
DNDoug Niccuminblog.dniccumdesign.com·Jun 17 · 5 min readStop sharing your variables in SlackOnboarding sucks The delicate balance of providing enough information so an employee feels informed while not having their brain explode from too much data can feel impossible at times. When I onboard10
DDhruvinmaterwelon.hashnode.dev·Jun 12 · 8 min readReading typed config from .env in TypeScriptNumber(process.env.PORT) || 3000 That line shows up in a lot of config files, and it has two bugs hiding in it. Misspell PORT in your .env and you don't get an error, you get 3000, and you find out in00
RBRajesh Bindevrajesh.hashnode.dev·May 27 · 7 min readDay 63: Deploy Iron Gallery App on Kubernetes | 100 Days of DevOpsContent: Today I worked on deploying the Iron Gallery application along with its MariaDB backend on a Kubernetes cluster. This task helped me strengthen my understanding of Kubernetes Namespaces, Dep00
SSapotaCorpinsapotacorpvn.hashnode.dev·May 24 · 4 min readEnvironment variables vs connection references in Power PlatformBoth environment variables and connection references exist for the same reason: a managed solution should import into Dev, Test, UAT and Prod without the developer editing anything between stages. The00
AAAli Abbas Chadharinaliabbaschadhar.hashnode.dev·May 14 · 6 min readHow to Pass Secrets and Environment Variables in Docker Without Leaking ThemA single misplaced credential inside a Dockerfile can expose your production infrastructure. Many developers unknowingly bake database passwords, private API keys, and proprietary registry tokens dire00