Chintan Bogharachintanboghara.hashnode.dev·5 hours agoEffective Management of Environment Variables in DevOps WorkflowsEnvironment variables are crucial in DevOps workflows. They pass configuration data between different stages of application development, deployment, and operation. By separating sensitive data and dynamic settings from the application code, they enha...10 likes·216 readsDevOpsDevops
Anjanesh Lekshminarayanananjanesh.dev·Jan 2, 2025environment package in pythonI think there are way too many environment handling packages out there (at PyPi) to get confused. One is environ which was last released in 2007 - https://pypi.org/project/environ/ - which is Python 2 based. We don't want this anymore. What we norm...1 likeEnvironment variables
Nitish Patelblogs.ntshptl.in·Jan 2, 2025How a Simple dotenv Mistake Turned My Express Server Setup into a Headache (And How You Can Avoid It)Setting up an Express server is supposed to be straightforward, right? That’s what I thought too. As someone who’s been knee-deep in Docker-based development for a while, I decided to step outside my usual workflow to try out Google Social Login API ...Environment variables
Mohammed Shakeelmaster-webdevelopment.hashnode.dev·Dec 21, 2024User Authentication Level 4User authentication is essential for protecting sensitive user data and ensuring secure access to resources. This Level 4 user authentication example uses bcrypt, Passport.js, and PostgreSQL while leveraging environment variables for enhanced securit...passport
Jonas Satkauskascyberjourney.eu·Dec 19, 2024Today I've learned: The Basics of Environment VariablesEnvironment variables in Linux It’s a very important topic. There are two types of variables: Shell Environment Variables are KEY=value pairs. Multiple values looks like this: KEY=value1:value2 Simply speaking environment variables determines...10 likesEnvironment variables
Niels Humbeckbuilding-data-products.com·Dec 18, 20247 Proven Best Practice to Master DataOps Architecture for Seamless Automation and ScalabilityDataOps is revolutionizing the way businesses manage and deploy data workflows, ensuring error-free production and faster deployment cycles. BERGH et al. (2019) outlined seven key best practices to implement a robust DataOps architecture. These steps...38 readsBuilding Data Products with DataOps Methodologydataops
Ramu Narasingathinkthroo.hashnode.dev·Dec 18, 2024next-runtime-env usage in Documenso source codeIn this article, we analyse next-runtime-env usage in Documenso source code and what is next-runtime-env. What is next-runtime-env? Using next-runtime-env, you can effortlessly populate your environment at runtime, not just at build time. Read more ... Nextruntimeenv
Adrian Nareterminal-knight.hashnode.dev·Dec 16, 2024Resolving nextjs PUBLIC_ENV undefined prod issueContext Backstory The Issue The solution Closing notes Context Next.js allows us to define env vars that we want to expose to the browser (consequently making them public) with the prefix NEXT_PUBLIC_, meaning that they will be bundled into the code...43 readsNext.js
Amulyaawscloudbasics.hashnode.dev·Dec 6, 2024Python for DevOps: Command Line Arguments and Environment VariablesIntroduction Command Line Arguments What Are Command Line Arguments? Command line arguments allow you to pass values to your Python program directly from the terminal, making your scripts more flexible and dynamic. Instead of hardcoding values inside...pythonPython
Nicholas Diamondnicholasdiamond.hashnode.dev·Nov 23, 2024Managing Environment Variables Securely in Node.js ApplicationsExposing sensitive information like API keys, database credentials, and other configuration data in your code is a major security risk. For modern Node.js applications, environment variables are a common and secure way to store such sensitive data ou...569 readshashicorp-vault