Questions tagged [development-environment]

A development environment is an integrated set of programming tools, usually centered around a text editor.

A development environment is a preconfigured used during development lifecycle. Preferably hidden from the end user.

Key tools includes a text editor, commonly extended with other tools for , , automating tools, database access or project management features. Such an editor called . Commonly configured for seamless tool usage.
Compared to the stability, performance and backup creation may be sacrificed in favor of more logging, easier bug detection or rapid iterations.

2519 questions
1
vote
1 answer

Hit two pythons with one computer

How would one set up python 2.7 and python 3.x on the same computer. Most of my old code is in 2, but a platform I am trying to use uses 3. How do I setup an enviroment in which I can work on both easily. I am using Ubuntu 13.10 by the way, so no…
PyRulez
  • 10,513
  • 10
  • 42
  • 87
1
vote
1 answer

Zend Config doesn't load settings from application.ini [development : production] part

I have a application.ini file in /application/configs directory. I have in configuration file (beside other options) parts like: [production] resources.db.params.username = "someuser1" dmp.server.baseUrl = "http://someurl1.com" [staging :…
sanneo
  • 365
  • 4
  • 15
1
vote
4 answers

Windows 7 vs. Windows Server 2008 for a development machine

I finally got some time on my hand to upgrade my main dev. machine from Windows XP SP3. Right now I have licenses to both Windows 7 Enterprise Edition and Windows Server 2008 Standard Edition. I mainly do web development (ASP.NET, ASP.NET MVC, RIAs…
code-ninja
  • 1,586
  • 1
  • 15
  • 23
1
vote
1 answer

How do i create a GNU Autotool Project in Eclipse CDT from existing C++ source code?

I have an existing C++ source code that is built using autotools and i wish to use in Eclipse CDT. I'm a beginner with Eclipse CDT. I've installed the Autotools plugin for eclipse but don't know how to create a project from existing code. May you…
red.clover
  • 1,788
  • 2
  • 18
  • 32
1
vote
2 answers

Python-CGI environment set-up?

I am doing a project in Natural Language Processing using nltk in python. The block structure of project is as follows: Interface (in php) -> [NLP Engine] (in python) -> API calls (in php) -> Result (in php) The input is supposed to go via GET…
Prashant Sinha
  • 323
  • 4
  • 9
1
vote
0 answers

How to separate mongodb databases for production and development, both running on one server?

I have two (same) rails applications with nginx configs (to use with passenger): > cat ./sites-available/app-production server { listen 80; server_name app-development.mydomain.com; root /path/to/my/production/app/public; passenger_enabled…
1
vote
2 answers

How easy (or difficult) is it to migrate to a development environment on Mac from Ubuntu

I am used to Ubuntu, I like it, I know my way around it. I am looking forward to upgrade my work laptop. I find the awesome hardware that a Macbook Pro is made of, a turn-on. Now, having never used a mac before, I'd like to know how easy it is to…
lprsd
  • 84,407
  • 47
  • 135
  • 168
1
vote
1 answer

copy heroku app local

A customer of mine has a Heroku Python/Django application that they have asked me to take a look at and I am trying to understand the process of getting it running on my local Windows 7 laptop. I have been searching the net without any success. Does…
Mark Munro
  • 169
  • 1
  • 4
1
vote
1 answer

Why rails 4 development and production environment behaves totally different, even with the same config?

I'm developing a rails 4 application with ruby 2.0.0. Using the default application (just right after rails new ... ) switching between rails s (or rails s -e development) and rails s -e production the development version works fine and production…
1
vote
3 answers

No such ruby version

I am having a really strange problem with my current environment. I am using rbenv, and I have my global and local version of ruby set to ruby 1.9.3-p448 I can even run: $ ruby -v ruby 1.9.3p448 (2013-06-27 revision 41675) [x86_64-darwin12.3.0] My…
BananaNeil
  • 10,322
  • 7
  • 46
  • 66
1
vote
2 answers

Detecting if a URL contains a certain string but NOT as a parameter using PHP

I'm trying to force different modes of debugging based on different development urls using PHP. I currently have this set up: $protocol = strpos(strtolower($_SERVER['SERVER_PROTOCOL']), 'https') === FALSE ? 'http' : 'https'; $host =…
mheavers
  • 29,530
  • 58
  • 194
  • 315
1
vote
1 answer

Should 'test' environments consume 'test' external services?

We manage an application that consumes a number of external services as part of its general operation. Some services are Soap Services, others Restful Apis. Some services are also managed by us, others are third party services. Some services are…
1
vote
0 answers

I am unable to subscribe/unsubscribe to a subreddit using the reddit api, in iOS

Can somebody help me with this? I am using an NSURL connection for GET and POST methods. The reddit api is found here: http://www.reddit.com/dev/api#POST_api_subscribe I am specifically confused with what the ('sr', 'sr_name') parameter is. Is it…
user2654336
1
vote
2 answers

Is there any reason why a dev server should be accessible from the internet?

This is a very generic question that popped up in my mind. The reason has been that I came across a website dev server which leaked sensitive information about a database connection due an error. I was stunned at first and now I wonder why someone…
1
vote
1 answer

Determining development environment automatically

I read through the Symfony2 documentation about environments. It only mentions executing the application in different environments by using /app.php or /app_dev.php. The default .htaccess file rewrites requests to / to /app.php which is great for…
Seth
  • 582
  • 2
  • 5
  • 15