Posts tagged configuration

4 posts

Configuration in Python Applications: No Magic, Just Necessary Practice

During the development of Python applications, I've continually asked myself how and when variables should be passed and initialized for the application's configuration. I want to be able to easily override the configuration for tests, for example, to use a local database for testing. But what exactly is application configuration, and why is it needed? The website a ...

GitHub - gregmolnar/prepper: Prepper is a simple server provisioning tool, built on top of SSHKit. You can use it to script your server build process.

This seems like a very nice simple tool to solve a common problem. My only confusion is that there are a bunch of similar tools to do the same thing. Each has its own DSL, written in ruby or some other language, has its own conceptual steucture, and its own bugs. It’s enough to make me decide to just keep doing it by hand. Heres what the author says: “ Prepper is a simple server provisioning tool, built on top of SSHKit. You can use it to script your server build process. - GitHub - gregmolnar/prepper: Prepper is a simple server provisioning tool...”

How to Setup Passwordless SSH Login

In this article we will show you how to setup an SSH key-based authentication and connect to your Linux servers without a entering password.