Uncategorized

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

Read More

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

Read More

Protected: Chatbot Salesforce

There is no excerpt because this is a protected post.

Read More

Protected: Create SAML Authentication

There is no excerpt because this is a protected post.

Read More

Authentication: Different ways 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

Read More

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

Read More

Deploy in Azure from Terraform and Key vault secret

Setup.sh Terraform main.tf variables.tf Command to run We include the command in the bash script to get the subscription id Alexandre BlanchetEarly in my career, I specialized in the Python language.

Read More

Use 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.

Read More

Create a Python library

1 – Create a new folder The src folder will contain the source of the project. Inside we create a module called trading_sdk 1 – Create a file to run the

Read More

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

Read More