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

The python module i am importing in C++ with the Python/C API can’t import torch

OS: Windows 10 C++ environment was created in Visual Studio Community 2017 with CMake. I have a C++ file importing a Python module and calling a function from it, everything seems to properly work until i do an “import torch” in the Python file. **…
0
votes
0 answers

When adding new content types in Drupal, do they need to be added in the DEV environment first?

I am wanting to add a new content type to a Drupal site. We have hosting through Acquia with Dev, Staging, and Prod environments. I am new to having multiple hosting environments. As I understand it, new content can be added at Prod and code changes…
0
votes
0 answers

Using an image in ejs template

I want to use a photo downloded in the directory : public/image/logo.png. and i want to use this image in secrets.ejs file it is inside the directory : views/secrets.ejsenter image description here please help me
0
votes
0 answers

How to manual test an application that is mostly dependent on external services

I'm working in a project that has a Java backend application and a React frontend application that are a single product. Now, the backend fully relies on external services stored on AWS. In dev, we can't use the AWS services because of cost…
JeanValjean
  • 17,172
  • 23
  • 113
  • 157
0
votes
1 answer

Getting " Process spawn error. Is java in the path? " error while trying to run npm run build command in root of facebook/react project

Getting the following error message while trying to run npm run build in root folder of react project: PS D:\react> npm run build > build > node ./scripts/rollup/build-all-release-channels.js BUILDING react.development.js (umd_dev) COMPLETE …
0
votes
0 answers

How to launch an installed demo application right after the phone call ends

I want to know that how to launch an application right after the phone ends and the application will only open if the user didn't able to pick up the call and also how to get the incoming phone number in any android phone with the help of broadcast…
Rajat Das
  • 1
  • 1
0
votes
0 answers

app crashed - waiting for file changes before starting... (This thing is shown after 30sec when my backend part successfully start)

I was working on backend of ToDo application, even I installed nodemon too, when I run the app, it runs successfully but after some time it shows (app crashed - waiting for file changes before starting...), Even I went to the task manager, remove…
0
votes
2 answers

Invalid host header on mern stack

"proxy": "https://mango-artist-rmdnr.pwskills.app:5000", I am adding this code to connect my frontend with backend then it showing invalid host header. My backend is running on port 5000 and frontend react is running on port 3000. "scripts": { …
0
votes
1 answer

Failed to activate devenv-3.8-c in setting up development env

ERROR Command :- C:\Users\WIN10\conda>.\dev\start Downloading miniconda... Installing development environment... Creating devenv-3.8-c... Updating devenv-3.8-c... Initializing shell integration... menuinst called from non-root env…
0
votes
0 answers

Serve a js file with dynamic URL depending on domain

I'm building an app hosted on a kubernetes cluster. My app serves a javascript file to the clients. The file contains something like this: const URL = "https://fancy.com"; async function doSomething() { // ...Do something here... let res =…
JPFrancoia
  • 4,866
  • 10
  • 43
  • 73
0
votes
1 answer

Want an easier way to develop react package in local

Hi I was trying to develop a react package which I did and published, but I want to know a way on how I can easily do the development in the local. As what I did is, I developed a component and then published in npm and installed to use it, however…
0
votes
0 answers

I am developing an android application, but unable to fix this issue

I am actually trying to develop an android application, to do so I added all the requirements and imports for that, but I am unable to fix this issue. After applying clean project and rebuild project I get this error every time. Image: Unresolved…
0
votes
0 answers

PermissionError: [WinError 5]access denied

i'm using windows10 64 bits and i am new to python i was trying to build an environment of a project on github Deep-STORM here is the command in the README.md conda env create -f environment.yml here is the details when i ran as administrator Pip…
0
votes
1 answer

Is there a better way to disable authentication in Development environment when using Blazor/Razor

I am working on a Blazor WebAssembly project that is setup with AzureAD authentication and makes calls to an API project that's also protected via AzureAD. It's working fine. My task is to find a solution to make local development less bothersome by…