0
votes
1answer
28 views

node.js: using process.env to store whole app configuration

Well maybe a little bit strange and basic question but.. As usual in my application I have some configurations parameters specific for current environment like dbs, paths, keys, logins etc. There is ...
0
votes
2answers
134 views

How to use the global.php/local.php configs in the getConfig() of a module in a Zend Framework 2 application?

In a ZF2 application I have some cofigs, that: 1. need to be different dependent on the environment; 2. are specific for a concret module. I'm curently using it like here described: global.php & ...
1
vote
2answers
82 views

Where should be stored the environment dependent configs in a Zend Framework 2 application?

A ZF2 application contains/nneds a lot of different config files: /config/application.config.php, /config/autoload/global.php, /config/autoload/local.php, /module/***/config/module.config.php. Now ...
0
votes
0answers
153 views

How to make the application read keys from app.config file of class library dynamically

My requirement is as follows. 1)I want to use the application settings to read a location path and use it in my project to read the files in that folder. --- I achieved this by creating a setting ...
0
votes
2answers
392 views

config.groovy meare with .property file in grails

In my config.groovy i have set .. emailTo="admin@xzyz.com" emailForm="notification@oabc.com" but i want some flexibility in this. Can I change this while my project is running form property file ? ...
0
votes
1answer
981 views

How to read values from multiple Configuration file in c# within a single project?

Here in my project I have two application configuration files called app.config and accessLevel.config. Now using the OpenExeConfiguration I was able to access the app.config.exe file but not the ...
0
votes
1answer
66 views

Is it possible to access the host as a variable in an ssh alias in order to extend the hostname?

I'm trying to create an SSH alias in my .ssh/config file that will match any host which ends .vpn and expand the hostname to [name].vpn.domainname.com I'm able to match any .vpn domain by specifiing ...
0
votes
1answer
146 views

Application error:Could not load file or assembly

I am working on the .net, when I am running my application I am getting this error. Can anyone help me? Application Error - MESSAGE: Could not load file or assembly 'ConfigurationMgr, ...
0
votes
5answers
231 views

How do I write to a non-standard config file?

I have a file called middle.config that is deployed in the same directory as an exe, but I need to update values in this file. That means that I have to go to C:\Program Files (x86)\ directory to ...
0
votes
1answer
140 views

Config samba permission in smb.config

How can I edit file smb.conf to solve this problem: Every samba user can read and write the folder /myfolder but only the person who created the file in folder can delete his file.
8
votes
2answers
8k views

Where is the user's Subversion config file stored on the major operating systems?

For Subversion 1.7, where is the SVN "config" file located on the various major operating systems (specifically on Windows, Mac OS X and Linux)?
4
votes
1answer
273 views

Best practices to create connection files

I have an application which i have some configuration files for cache, queue, and database. public class ServerConfiguration: ConfigurationSection { [ ConfigurationProperty( FOO, DefaultValue = ...
6
votes
3answers
3k views

How to create a WCF client without settings in config file?

I just start work on WCF a month ago. Please forgive me if I ask something already answered. I try to search first but found nothing. I read this article, WCF File Transfer: Streaming & Chunking ...
0
votes
1answer
1k views

How to read custom .config file in Asp.Net?

I have a custom configuration file in my asp.net website, named urls.config, which contains simple key value, just for redirection purpose, now I want to read this file programmatically and also add ...
0
votes
1answer
367 views

How are INI files used today? [closed]

I really like the "INI" file format: Declarative KEY=VALUE, possibly embedded in named sections. Further, I like the old "Make" style, where values set "higher" in the file may be interpolated into ...
0
votes
1answer
409 views

Config::Simple and constant assignation in perl

I am using the Config::Simple module and the constant pragma. I am parsing a configuration file and setting the values as constant. the test configuration file (test.ini) contains: ...
1
vote
2answers
309 views

What's the best way to store a decision table in a config file?

I'm looking to store a decision table similar to this example http://en.wikipedia.org/wiki/Decision_table#example in some sort of config file but can't think of a format that would be clean. Any ...
0
votes
3answers
1k views

PHP: load set of properties (from config files) only ONCE for all user requests

I have a file which contains application specific properties (e.g. timeouts etc.) which I have placed in a my_app.ini properties file and which I read using parse_ini_file(). How/where should I make ...
0
votes
1answer
97 views

Using one app setting variable definition in another app setting variable

Is there a way to use one app setting variable definition in another app setting variable? This is an example, right now I have: <add key="P4RootDirectory" value="d:\p4\" /> <add ...
2
votes
2answers
708 views

Config file parser in Fortran

I would like to be able to use a simple configuration file to pass parameters to my program. This configuration file would consist of a list of arguments with values that can be of different types ...
2
votes
3answers
812 views

How to debug config files in .NET?

I've got a Visual Studio project that recently started throwing a ConfigurationErrorsException, and I can't figure out where it's coming from. I've hunted high and low, can't find anything like the ...
2
votes
5answers
3k views

Python: Decent config file format

I'd like to use a configuration file format which supports key value pairs and nestable, repeatable structures, and which is as light on syntax as possible. I'm imagining something along the lines of: ...
0
votes
1answer
960 views

Code required to use foreach on my own custom appSettings

I've searched the site and haven't found exactly what I'm looking for. Close, but no cigar. Basically I want to have a config section like this: <configSections> <section ...
3
votes
3answers
568 views

Sharing application configurations across a solution

I have a solution which has multiple output projects (a website, and admin tool, and a SOAP API layer). They each share common projects in the solution (the service layer, data layer etc). In one of ...
53
votes
17answers
3k views

At what point does a config file become a programming language?

I have been mulling over config files and their relationship to code for a while now and depending on the day and direction of the wind my opinions seem to change. More and more though I keep coming ...
4
votes
3answers
1k views

What's the best Perl module for hierarchical and inheritable configuration?

If I have a greenfield project, what is the best practice Perl based configuration module to use? There will be a Catalyst app and some command line scripts. They should share the same ...
4
votes
4answers
3k views

How to make the Visual Studio compiler ignore a file?

Is anyone aware of a way to make visual studio completely ignore a file when compiling? I have a C# solution that has a foo.config file that isn't really a standard config file - it's just a text ...