0
votes
0answers
14 views

App running environment - “Coupling” when checking the current environment

If I am running my application in a test environment, I want to enable/disable some features. If I am running it in a prod environment, I want to do the same. And so on for every kind of environment. ...
3
votes
3answers
533 views

Setting environment variables with puppet

I'm trying to work out the best way to set some environment variables with puppet. I could use exec and just do export VAR=blah. However, that would only last for the current session. I also thought ...
2
votes
2answers
273 views

Setting environment variable for one program call in bash using env

I am trying to invoke a shell command with a modified environment via the command env. According to the manual env HELLO='Hello World' echo $HELLO should echo Hello World, but it doesn't. If I do ...
2
votes
2answers
2k views

How to structure Laravel .htaccess in order to point straight to public folder & remove index.php

I am attempting to create htaccess files that can be used on development and production server. The development server's folder structure is like this: Server Root (www) -laravel -public ...
0
votes
1answer
65 views

Same program behaves differently in different consoles

I wrote a text mode batch C++ program that since today is giving me some troubles. The executable worked correctly and it did not change. The environment did not change; not even a reboot. When I ...
1
vote
1answer
281 views

Sourcing env variables into Java from a text file, bash-style

I have a bash file (let's call it bash_file) which contains a number of environment variable assignments (e.g. TOOLS_DIR="/opt/tools") as well as bash code which sources another file (e.g. source ...
1
vote
1answer
168 views

Create/Destroy New Environment in PowerShell Script

I'm trying to find a method whereby a PowerShell script can be executed without the environment "leaking" back-and-forth between the script and other scripts/the console. I.e. if I set an environment ...
1
vote
2answers
392 views

Dynamic environment variables in Linux?

Is it possible in some way to have dynamic environment variables in Linux? I have a webserver where sites follow this layout: site/ qa/ production/ I would like to have an environment ...
0
votes
1answer
352 views

Environment Variables on OS X Lion complete guide?

I was wondering where people find information about environment variables. I have seen that there are often conflicting and confusing descriptions of how to set environment variables for OS X Lion. I ...
0
votes
2answers
118 views

Setting up own environment variable lookup

I have standalone Java application ,in that i have various modules Application starts from one classes main() method and then application goes on. Now i wanted share variables in form of key/value ...
0
votes
1answer
34 views

Different 'development' environments for different developers

We have three environments: development, staging, and production. In our configuration variables for development, we set our database to connect to 127.0.0.1 with a set username or password. ...
2
votes
1answer
744 views

Taking Database Settings out of the application.ini and into the environment

In traditional coding of Zend based applications, the database settings are stored in the application.ini . This stores the settings on a per application basis. Has anyone here on StackOverflow ...
4
votes
4answers
9k views

Running ant through eclipse it doesn't find environment variables, but running ant through terminal is fine

When i run ant through Eclipse some targets build fine, but ones that need a specific environment variable i.e. SOME_SDK that i set in my .profile file won't work. Even if i try to echo out ...
8
votes
6answers
5k views

Expand environment variable for My Documents

I know I can read environment variables like this: Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments); However, it would be really helpful to me if I could do something like this: ...
1
vote
1answer
1k views

Ant, set environmental variable for <ant> task?

I want to run another ant build file from ant, and the <ant> task looks perfect for this. The other build file uses environmental variables for a couple things. Is there a way to set ...
0
votes
2answers
2k views

How to set environment variables for javac to be able to find imported packages?

I am not a java developer. I just want to run a java application (which can be downloaded from: http://code.google.com/p/k-shortest-paths/downloads/list , under this name: ...
12
votes
2answers
5k views

Programmatically adding a directory to Windows PATH environment variable

I'm writing a Win32 DLL with a function that adds a directory to the Windows PATH environment variable (to be used in an installer). Looking at the environment variables in Regedit or the Control ...
0
votes
1answer
403 views

Why doesn't os.system('set foo=bar') work?

Possibly a stupid question: Why can't I set an environment variable with this? os.system('set foo=bar') # on windows I'm aware of os.environ, and that works for me. I'm just confused about why the ...
2
votes
3answers
3k views

How can an application access the environment variable set by another application?

In this case the application which sets the environment variable is executed in/from the application that needs to access the env.var. The Main() Return Values (C# Programming Guide) msdn article ...