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
12
votes
7 answers

Which debuggers support step back/time machine/back-in-time feature?

If possible, describe platforms/languages/symbolic formats supported and if full support is provided (historical states back) or partially (only code can rerun with no rescue for states). Further information about performance or resources needed is…
Maniero
  • 10,311
  • 6
  • 40
  • 85
12
votes
3 answers

Can I assign a global hotkey to an Adobe AIR app?

Is it possible to assign a global hotkey to a specific feature in an Adobe AIR app, i.e. the app feature responds to the hotkey whether the app is active or not (it must be running of course, but only in the system tray).
thvo
  • 1,532
  • 2
  • 15
  • 29
12
votes
11 answers

What can I do to speed up Rails development mode?

Rails, on development mode is SLOW. Very, very slow. I run Vista, and I set config.cache_classes = true in development.rb... But, it's still slow and I have to restart the server after I change my code. My coworker develops Rails on a Mac and sees…
user94154
  • 16,176
  • 20
  • 77
  • 116
12
votes
5 answers

Best way to tell if in production or development environment in .NET

I would like to send email differently on production then the development environment, such as sending emails only to me while testing. I know that I can set an application value in the webconfig file or check the url before sending the emails. I…
11
votes
5 answers

Success with OS X and Vmware for iPhone development?

After trying and failing to get my hands on a temporary Mac to develop an iPhone app for a client, I've started to look into VMware Workstation to virtualize OS X. I was wondering if there are any gotchas that people have found, or if the whole…
11
votes
4 answers

Why can't I access my local Gatsby site on my phone

I am new to Gatsby, and I will be starting my first project today. I want to be able to test the site on my android phone to ensure mobile compatibility rather than using chrome dev-tools. I have only ran a few commands so far. 1) Gatsby new…
11
votes
1 answer

"Could not get GOOGLE_APP_ID in Google Services file from build environment" error

I am using the below guide to set up a dev and prod environment for my project that uses flutter + firebase https://www.tengio.com/blog/multiple-firebase-environments-with-flutter/ I have set up my respective GoogleService-Info.plist under…
11
votes
6 answers

What O/S do you prefer for web development, and why?

I consider myself fairly versatile when it comes to O/S selection. I have used DOS/Windows PC's all my life, switched my main laptop to Mac two years ago, and have used numerous flavors of Unix/Linux/BSD while studying for my Comp.Sci.…
Jens Roland
  • 27,450
  • 14
  • 82
  • 104
11
votes
1 answer

What is the difference between nodemon and live-server?

Can someone help me understand the difference between npm packages nodemon and live-server as they both reload the server and listen for changes?
Teknoville
  • 459
  • 1
  • 7
  • 18
11
votes
6 answers

How to change PublicPath for Create React App in Dev Environment

I am using Microsoft.DotNet.Web.Spa.ProjectTemplates::2.0.0-rc1-final which internally uses Create-react-app and AspnetCore.ReactDevelopmentServer My Dev. Environment is using IIS for hosting multiple api's say api1 as http://localhost/api1 and api2…
11
votes
2 answers

Angular routes pushed to array after creation not working in production

I've created a github repository which has a perfect example of my issue. https://github.com/rjriel/dynamic-route-example The important part of the code in this repo is in app.module.ts let mainRoutes: Routes = [{ path: "first", component:…
11
votes
15 answers

"Perfect" .NET development environment?

I've been given an early Christmas Present: Permission to step out of the development cycle to reorganize and document our application. I have complete freedom to restructure, refactor, and set up any amount of infrastructure I see fit. If…
El Mark
  • 707
  • 2
  • 8
  • 18
11
votes
3 answers

Docker setting up

I'm reading lot about Docker these day, I even tried to run it on my laptop with Vagrant. But still I'm not clear why and especially how to introduce it to my team. It's just that I don't see the use cases. I understand you can create containers for…
Zveratko
  • 2,663
  • 6
  • 35
  • 64
11
votes
9 answers

Where/When do C# and the .NET Framework fail to be the right tool?

In my non-programming life, I always attempt to use the appropriate tool for the job, and I feel that I do the same in my programming life, but I find that I am choosing C# and .NET for almost everything. I'm finding it hard to come up with…
Nate
  • 30,286
  • 23
  • 113
  • 184
11
votes
4 answers

How can we check if the current OS is win8 or blue

Win8.1 and Win8 has the same OS Version. How can we check if the current OS is Win8 or Blue? The Environment.OSVersion is giving us the same results: Environment.OSVersion 6.2.9200.0 Environment.OSVersion.Version …