Logging with Python – The hidden features
Logs levels and priorities By default the logging library is configured to display only the logs with a priority higher or equal to WARNING. In production, a lot of logs are
Terraform State Storage + Principle account
State Storage Installing Terraform Creating a new folder for this mini project Initialize Terraform Create a main,tf file containing definition of storage account with storage account resource group Create a sub
Protected: Chatbot Salesforce
There is no excerpt because this is a protected post.
Protected: Create SAML Authentication
There is no excerpt because this is a protected post.
Authentication Systems: How and whys
Basic authentication Basic Authentication is a simple authentication mechanism commonly used in web applications. It involves encoding the user’s credentials (username and password) into a base64-encoded string and sending it as
Setup and run your self hosted pypi server
Get pypy mini server docker image https://hub.docker.com/r/pypiserver/pypiserver Create a new project Install library pypiserver Create a new folder containing the packages to share Add package tar.gz in packages # Will listen
Protected: Deploy in Azure from Terraform and Key vault secret
There is no excerpt because this is a protected post.
Use Azure KeyVault with CLI
Terms: Keys: let’s say you need to encrypt sensitive user data (like SSN) before storing it in your database to ensure confidentiality. You would go for keys in Azure Key Vault.
Protected: Create a Python library
There is no excerpt because this is a protected post.
Deploy a Flask application to App server on Azure
Prerequisites: Restart your computer if asked by Windows Step 1: Prepare Your Flask Application Create a new project, for e.g: dockerImageExample Create a new Python file app.py in the project Create