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

Firebase: improving staging environment security/visbility

I'm splitting out my project into staging/prod, and am having trouble figuring out a good way to protect the app from external access while still maintaining as much parity as possible. This document goes over some of the patterns, but I find them…
Nathan
  • 73,987
  • 14
  • 40
  • 69
0
votes
0 answers

How to hide the user details on community standard error page in salesforce community?

After login to community if user modify the url by writing any random thing on url then we are getting salesforce standard error page. And on that page in header section we can see our community name and user details with dropdown. I want to hide…
0
votes
0 answers

Where to set up environment variables for development purpose?

Is there any "standards" way to set up environment variables during development? Like database connect string as environment variable, package manager proxies and the like. Sure I know of .bashrc, .profile, Windows Gui, launch.json of VSCode,…
JohnDoe
  • 2,422
  • 5
  • 29
  • 44
0
votes
0 answers

How to setup development environment for a Python multi-package application?

Working on a python application which consists of multiple packages which are supposed to be decoupled from each other and installed as dependencies if necessary. Each package is installable and can be accessed through a namespace. However, this…
0
votes
1 answer

How to render the image in a blog post from a database?

Pardon me, if it sounds like a noob doubt I am making a blog website, where I am storing the text in MySQL DB, and planning to store image as a url, since otherwise it will make db bulky. So hosting image elsewhere seems to be a reasonable…
0
votes
0 answers

How does one configure development to layer docker, conda and pip?

Development environment version alignment can be such a nightmare given the understandable lack of coordination between various moving parts such as OS version, CUDA version, driver version, package version. What I've found works relatively well is…
user3673
  • 665
  • 5
  • 21
0
votes
1 answer

Should we run automated tests on all our environments?

We have 2 testing environments DEV and TEST. (not running automated tests on PROD) The DEV env is not that stable because everyone is deploying stuff on it. The TEST env is more stable and more reliable than the DEV. Should we consider running our…
0
votes
1 answer

Manifest XML file in the Admin Center environment

I have the following question that involves the Microsoft Office add-in. After the team has prepared the manifest file and wants to make it available to organizations that will be using this add-in/solution, should the organization be in the Admin…
0
votes
1 answer

App.spec file for aws ECS blue green deployment

When i run App.spec file for aws ECS blue green deployment the error is coming : "The deployment failed because the AppSpec file that specifies the deployment configuration is missing or has an invalid configuration. Failed to parse your appspec…
0
votes
1 answer

How to bypass Socialite in development?

I am using a KeyCloak login in production, but in development, I would like to log in with the default user populated in seeders. I tried to bypass the authenticate method with this:
nowox
  • 25,978
  • 39
  • 143
  • 293
0
votes
1 answer

Should I move windows project folder into WSL?

I'm trying to set up a work environment on a new machine and I am a bit confused how best to procede. I've set up a new windows machine and have WSL2 set-up; I plan on using that with VS Code for my development environment. I have a previous django…
0
votes
2 answers

#NeedHelp flutter not worked on my machine

Flutter Doesn't worked on My Machine. I'm Using win 11 and I want set flutter in my machine and I set that's path on system and user both variables also. and try many of time after restart but it's not work. what should I do? Please Help...
Star Lord
  • 1
  • 1
0
votes
1 answer

installing lalsuite to conda

im trying to install lalsuite on conda https://github.com/conda-forge/lalsuite-feedstock attempt 1 = conda-forge (base) C:\Users\jack.flavell>conda install -c conda-forge lalsuite Collecting package metadata (current_repodata.json): done Solving…
tgm_learn
  • 61
  • 7
0
votes
0 answers

is there a way to make gprconfig use $USER for pathnames so that output file is independent of logged-in USER?

I created gpr file for mixed language project by running gprconfig. Unfortunately the resulting gpor file has fixed usernames in every path, eg /home/tomsmith/.... I need to make gprconfig generate, instead, something like /home/$USER/... so the…
0
votes
1 answer

How I can select which main file I must build in flutter during a release of a desktop application?

In flutter a made a linux application. Is consumes an endoint that varies depending the environment I need to build for. For each environment I have a different main file: For production I have a main-prod.dart For staging I have a…
1 2 3
99
100