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

Docker Dev environments without using Docker Desktop on macOS

I'm still quite new to docker here so please feel correct me if some things I state are mistaken. Docker has launched a feature called Docker dev environments. I'm interested in this feature with the goal of creating a consistent development…
Alex
  • 1,293
  • 1
  • 13
  • 26
0
votes
0 answers

How to switch locations between local/server

Sorry I have not too much experience coding, I have developed an application currently working in a server, the topic is, each time that I need to upgrade or edit something in the app I have to change the locations from the server to my local PC…
0
votes
1 answer

Is it better to collect all apps in one app or divide them into partial apps?

I am creating an android application to run an educational institution. Is it better to separate the application for the manager, the application for the teachers, and the application for the students (each application alone), or is it better to…
0
votes
2 answers

Cannot run my angular application in dev environment

So I have an Angular application that I can build and run in production environment, but cannot run in dev mode. Tried to use this command: npm exec ng serve -c dev --port 4200 --proxy-config proxy.conf.json and adding -c dev shows this error in the…
0
votes
1 answer

Problem with database when I use .env file

When I try to migrate some changes on one of the models I get this error but only when I use .env file in settings.py: django.core.exceptions.ImproperlyConfigured: settings.DATABASES is improperly configured. Please supply the ENGINE value. Check…
0
votes
2 answers

Cannot access properties of process when using it in object value

I am trying to use process.env in value of a key in ts. But I am not able to access process properties and its showing "Cannot find namespace 'prcoess'". const MAIL_SETTINGS: { service: 'gmail', auth: { user: prcoess.env.MAIL_EMAIL, …
0
votes
0 answers

Start a container in interactive shell in docker compose

My scenario is that I have a bunch of next.js apps. I start all of them in production mode (yarn start) by docker compose up. The docker-compose file looks like below version: '3' services: website: ... admin: ... website-api: ... …
Tu Le Thanh
  • 542
  • 1
  • 6
  • 18
0
votes
0 answers

In a development environment, is it possible to bind mount package installation in docker containers?

We can configure the docker files to install packages from an already prepared list(such as package.json, go.mod) of dependencies. Consider a situation where npm is not installed in the host machine. A developer runs a node application in a docker…
0
votes
0 answers

Stacktraces with sourcemaps in warnings from react?

I have sourcemaps working when error are thrown but React has some special warnings that create stacktraces of its own in reactdom (when development mode). Is it possible to have sourcemaps loaded in these stacktraces? We are building using webpack…
0
votes
0 answers

how to properly set up a database config file for sequelize? i keep getting "TypeError: Cannot read properties of undefined (reading 'max')"

basically, i am trying to make my app choose which database it's going to use. i'm having trouble, because i keep getting a "TypeError: Cannot read properties of undefined (reading 'max')". i've spent about three hours on this (very new to web stack…
0
votes
2 answers

RVM Error when installing Ruby using WSL2 on Ubuntu: Error running '__rvm_make -j16'

I am reinstalling my environment after reinstalling windows 10. I was given instructions for installing WSL2 and using the Ubuntu distro, nvm and then node.js, and then rvm and ruby. My organization wants us on ruby version 2.7.4 specifically. I am…
0
votes
1 answer

ERPNext: Modifying the search pop-up on Purchase Invoice form

When I add multiple items under (New Purchase Invoice) as shown below, it gives me the only two items I created so far in order to assign them to the supplier selected. I need to add two more rows in this pop-up (price & quantity) for each item in…
0
votes
1 answer

Set Up Development Environment for Unit Testing C

I'm new to unit testing and have mostly programmed using IDEs, therefore I haven't created and/or modified makefiles before. Now that I'm exploring Unit Testing and TDD in general; I'm not sure how to set up the development environment so that my…
mrs15
  • 15
  • 5
0
votes
2 answers

Managing MODX Resources and Elements from code editor

I'm importing my plain HTML/CSS website to MODX. I made all of the Elements static, so I can edit them from VS Code + SFTP plugin. But I still have to use MODX Manager to create or delete new Elements. Is there a convenient way to manage Resources…
0
votes
0 answers

Get tickets and subtickets linked to given Jira ticket id in python

I am new to python automation and here is one logic i wanna explore i have a ticket NeonTest-01 in jira, i want to fetch all the tickets linked to NeonTest-01, Lets say NeonTest-02 and NeonTest-03 are linked to NeonTest-01, and NeonTest-04 is linked…