Top "Configuration-files" questions

Files that configure the initial settings for some computer programs.

Use an INI file in C on Linux

Is there a standard way of reading a kind of configuration like INI files for Linux using C? I am …

c linux configuration-files
Which design patterns can be applied to the configuration settings problem?

In large and complex software products managing configurable settings becomes a major pain. Two approaches I've seen to the problem …

design-patterns configuration configuration-files application-settings
Where is the varnish configuration file?

I have just installed varnish and its ready to serve web pages. Problem is that we are hitting open files …

webserver configuration-files varnish
iOS Application Configuration File

In a C# application I always used an app.config file to save some data for my application to load …

ios configuration-files
Configuration file in Android. Does that exist?

I have some configuration I want to save it in my Android application and read it whenever I need , for …

android configuration-files
Preserve case in ConfigParser?

I have tried to use Python's ConfigParser module to save settings. For my app it's important that I preserve the …

python configuration-files python-2.x configparser
How do I import an iTerm2 profile?

This question helped me with how to export a profile configuration file, but how do I import that file into …

macos configuration configuration-files iterm2
How to create an .INI file to store some settings in Java?

I want to create an ini file to store some settings for my application. Is it a good idea to …

java settings configuration-files
Which is the best way to allow configuration options be overridden at the command line in Python?

I have a Python application which needs quite a few (~30) configuration parameters. Up to now, I used the OptionParser class …

python command-line configuration-files