Questions tagged [environments]

An Environment consist of the server, operating system, settings and software that a program runs in. It can also refer to a software development setup where software is created.

Execution Environment

Execution environments are generally grouped into three major categories:

Software Development

  • A is an integrated set of programming tools such as compilers, usually centered around a text editor.
  • A is an environment set up to compile groups of code together in a controlled environment with specific settings to product a software product.
70 questions
1
vote
1 answer

Automatic way of keeping track of different environment versions?

In my project we use JIRA + Confluence + Teamcity. We have different environments (dev, systest, beta, integration, live). We make CI and our build progress from one environment to other. If I want to see the version I only need to…
Oscar Foley
  • 6,817
  • 8
  • 57
  • 90
1
vote
1 answer

Rails Setting up unique integration environment

I am trying to setup a unique environment (but effectively a new development environment so that various global parameters can be different). I've followed lots of examples to create a new environment (I used my development config as the starting…
Ben
  • 1,292
  • 1
  • 13
  • 21
1
vote
2 answers

Assigning unknown variable to new variable name

I have to load in many files and tansform their data. Each file contains only one data.table, however the tables have various names. I would like to run a single script over all of the files -- to do so, i must assign the unknown data.table to a…
ricardo
  • 8,195
  • 7
  • 47
  • 69
0
votes
1 answer

Codeigniter environments custom javascript inclusion

Codeigniter has its 'ENVIRONMENT' setting such that when in a production environment, by changing the setting to 'production', all of the production configuration files are included. A large amount of my website utilizes javascript. As such I want…
0
votes
1 answer

Environment setting in a .net applilcation

I need to know how we can control the environment setting in the application without manually changing the setting in app.config in my .net windows application. In Java I would use a command line option (-D parameter) to set the environment when…
user74042
  • 729
  • 5
  • 14
  • 28
0
votes
1 answer

docker-compose environment variables to tomcat context.xml

I have the following problem: I want to define, in my docker-compose file, some environments variable for my db connection. services: myapp: build: SessionHandler container_name: sessionhandler environment: -…
d_vucin91
  • 119
  • 2
  • 12
0
votes
0 answers

Is it possible to use localStorage like private env variable?

I mean Is it possible to set some variables privately. Values of keys can't see in site's files. I use Angular 5 + nodejs Expressjs. process.env.blablabal helps me for backend but not client
aaaaaaaaax10
  • 599
  • 2
  • 9
  • 21
0
votes
0 answers

Include files from other folder outside of angular project

In angular-cli.json , I am trying to set some environments file which won't be a part of the project . The root is set to src which I want to keep intact but in environments config I want something like this to work "environments": { "dev":…
Riya
  • 794
  • 2
  • 9
  • 17
0
votes
2 answers

Sinatra with multiple environment config

After working with Sinatra a couple of weeks I reached the moment to deploy my app in a staging environment. After reviewing sinatra configuration settings and looking around I did not find a way to have a config file per environment so that instead…
jmolina
  • 259
  • 3
  • 12
0
votes
2 answers

How to configure extra properties to load in a android app initialization?

I want to setup a variable SERVER_URL and it'll be switched between environments production, test, development. What I want to do: @Override protected void onCreate(Bundle bundle) { R.urls.SERVER_URL; // is it a valid approach using…
Hemã Vidal
  • 1,742
  • 2
  • 17
  • 28
0
votes
1 answer

Python dependencies(wordcloud) installed but still triggers errors

I am trying to create a wordcloud with Python so I tried so many times to install the wordcloud with pip install wordcloud and finally succeeded. https://ibb.co/hYuzP7 When I run the pip list I can see it listed there. https://ibb.co/hUhm47 You…
flame
  • 55
  • 1
  • 1
  • 9
0
votes
2 answers

Writing a knitr document when data munging happens in functions

I have a large and complicated workflow (lots of initial inputs, recoding, merges, dropped observations, etc) in R and I do that work within many isolated functions specific to each input type, each merge and data manipulation step, etc. Right now…
user2292410
  • 447
  • 4
  • 13
0
votes
1 answer

Classic usecases for different deployment environments

I just started working in a software company and they have 4 different deployment environments. Reference / Integration / Acceptance / Production. Could someon please explain to me what the typical usecases of these single environments are?…
0
votes
0 answers

Can updating conda libs cause problems on previous created environments?

I have some environments created as clones of our master environment, the thing that I'm wondering is that those environments have some of their libs linked to the master environment, what if I update some libs on the master? Could them be affected…
0
votes
0 answers

PYTHON: Installed Python 3 Kernel in Jupyter Now I can't call even Numpy

So I wanted to have the option of running python 3 or python 2 through my jupyter notebook. So I followed Stack Overflow advice detailed here: Using both Python 2.x and Python 3.x in IPython Notebook Didn't work: conda create -n py27 python=2.7…