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 Satkauskascybr.hashnode.dev·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...28 readsBuilding Data Products with DataOps Methodologydataops
Think Throothinkthroo.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...38 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
Md Shahriyar Al Mustakim Mitulmitul-shahriyar.hashnode.dev·Nov 19, 2024Kubernetes 101: Part 11Monitoring a Kubernetes cluster We may want to check the pods details or cluster details but kubernetes does not show those metrics in general. We have a few open source projects which gives these solutions. They are basically advanced metrics serve...From Linux to DevOps Expertmetric server
Cañete,Brandon L.git-fundamentals-documentation.hashnode.dev·Nov 14, 2024Python .env and .gitignoreWhat is .env file? The .env file is used in projects to store configuration settings, environment variables, and sensitive information securely. It provides a convenient way to manage and organize various parameters that your project needs without h...Python
Shubham Khanshubhamkhan.hashnode.dev·Oct 23, 2024How to Safely Remove a File from Git History: A Beginner's GuideWhen working with Git, it's not uncommon to accidentally commit sensitive information or files you don't want in your repository's history. This guide will walk you through the steps to remove a file from Git history and ensure it stays out of your p...Git