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
2 answers

SET: not found NODE JS

I use SET NODE_ENV=PRODUCTION& nodemon server.js in my package.json file. But the environment not change and still run in the development mode. It also throw error like sh: 1: SET: not found in terminal.
0
votes
2 answers

What are the important attributes/properties of TextFormField in Flutter?

What are the important attributes/properties of TextFormField in Flutter can someone tell me?
0
votes
0 answers

This application has no explicit mapping for /error, so you are seeing this as a fallback. in spring boot

this is the error that i'm getting just when i'm taking input from a HTML FORM and hitting submit. here's my controller file: package com.employee.employeesystem.controller; import org.springframework.stereotype.Controller; import…
0
votes
1 answer

Docker image with tensorflow and cudf

I been working with vscode development containers. I've managed to build 2 separate containers to leverage gpu support inside of the container. The first container built tensorflow-gpu into a cuda:11.5.2-cudnn8 runtime image. With the other…
Jason Leaver
  • 286
  • 2
  • 11
0
votes
1 answer

sagemaker notebook instance failed to run even a single line of code

l am running a notebook instance as usual. But suddenly something was wrong. The notebook failed to give out anything. So l use a simple line of code to test it, which returns the following result: my test result The notebook even failed to run so…
0
votes
1 answer

Running ipynb file, but can't import a certain module

l'am running a ipynb file on sagemaker, however the error of occurs. l have used 'pip install tqdm' in terminals to install the tqdm so l've no idea what's happening. Is it running in a different environment? Thanks for any answer. error report from…
0
votes
0 answers

React onclick handler calls function in LOCAL env but not in DEV

I have an onclick handler that looks like this: { triggerCall() closeModal() …
Haq.H
  • 863
  • 7
  • 20
  • 47
0
votes
3 answers

How do I edit my VS Code environment so that I can preset Input data for my Python Code so that I don't have to input data again and again

I want to ask that how can we make our VS Code workspace such that we can preset all the input we want to give to our python program at once and it uses that data when it runs in the terminal. Like if I am working on a program and it takes multiple…
0
votes
1 answer

"simple" dev/prod build to add https for static+react+express

What's the simplest way to "build" a static web page and Node backend such that the Node server runs in HTTPS in dev mode (but not production) and the static web page can point to https://localhost/foo in dev, but just /foo in production? Long…
philolegein
  • 1,099
  • 10
  • 28
0
votes
1 answer

Customise shortcuts in Open File Dialog and Open Project Dialog

In the Open File Dialog and Open Project Dialog there is a short cut panel on the right. Is there any way to add our own short cuts here? Office has a very similar dialog that allows you to do this - but Visual Studio doesn't seem to allow this.
Mesh
  • 6,262
  • 5
  • 34
  • 53
0
votes
1 answer

How to not show the current month in wp_get_archives('type=monthly')

wp_get_archives('type=monthly') I have a page called the previous newsletter that shows all the months in which i have posted the date. But i don't want to show the current month in the list of the Previous Newsletter. The current month's posts will…
0
votes
1 answer

creating a development container for multiple pc

I want to create an image that contains all the dependencies needed for development like Java Maven, Node, etc., I want to create that image and then deploy it in different PCs at the same time. I wanted to know if this is possible to do it by using…
JcAm
  • 59
  • 1
  • 9
0
votes
1 answer

Where should config and settings files be made available to other developers?

I'm using Google Cloud Platform and researching what's needed for continuous development/integration. We may use Google Secrets for passwords, API keys, etc. But I also see information in settings and config files that don't seem appropriate as a…
Dan Cogswell
  • 475
  • 3
  • 16
0
votes
1 answer

Is it possible to use the version of PHP that is installed via brew in MAMP?

I have recently switched from Windows to Mac and would like some advice. I need to use a simple, flexible development environment for my projects. My projects are mainly based on Wordpress and Statamic. According to the recommendation I tried MAMP.…
0
votes
1 answer

Easiest way to have a server that always respond with HTTP 200

I'm working with multiple microservices, and sometimes I just want to ignore a microservice and replace it by a server that will always respond with HTTP 200 for any request. By any request, I mean every type of requests (POST, GET, PATCH ..) with…
Richard
  • 58
  • 6
1 2 3
99
100