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

How to add qml map to qgraphicscene widget?

I want to add a qml map to qgraphicscene instead of qquickwidget, can anyone please help me do it fast? int main(int argc, char *argv[]) { QApplication app(argc, argv); QMainWindow window; QGraphicsScene* scene = new…
0
votes
0 answers

Docker in Docker Dev Environment

We have a large PHP application that's quite challenging to initiate on a development machine. This situation has led us to seek a better solution, which we believe may be Docker development environments. Our goal is to ensure a smooth setup on…
MrJami
  • 685
  • 4
  • 16
0
votes
1 answer

Adding Small Square Focus to QR Code Scanner in Jetpack Compose

I have successfully implemented a QR Code Scanner in Jetpack Compose, but I would like to enhance the user experience by adding a small square focus that hovers over the icon of the QR code. This square focus will visually indicate to the user where…
0
votes
0 answers

Angular http client observable not emitting in development mode (but request is successful and response received). Emitting in production

I have a very simple call to an express function hosted in firebase cloud function: checkContactExistByEmail(email: string): Promise { const url = `${CRM_API_URL}/${CRM_API_ENDPOINTS.checkContactExistByEmail}`; return firstValueFrom( …
0
votes
1 answer

Nothing to boot: No such file or directory

Hi guys i was trying to set up ubuntu server in VirtualBox until this happened was written Nothing to boot :no such file or directory i don't how to solve this can someone help I did literally everything to solve it but it didn't work
Sally
  • 1
0
votes
0 answers

Creating a web-page test platform in PHP

How to create a web-page testing platform like Browserstack? I want to develop a website that can test any webpage on different devices, preferably using PHP. P.S.- The end goal is to create an SEO group buy tool website that gives access to paid…
0
votes
0 answers

How do I specify a pip-installed, editable dependency in a conda environment YAML file?

I'm developing a python package in a conda environment defined by a YAML environment file. my question is: is there a way to specify this local package as an editable, pip-installed dependency in the YAML file? my conda env YAML file looks something…
william_grisaitis
  • 5,170
  • 3
  • 33
  • 40
0
votes
0 answers

VS Code Extension not uninstalling

I developed and published an extension for Visual Studio Code. Upon installing it (in Visual Studio Code), I was testing to see if it worked properly and it didn't, hence I uninstalled it, unpublished it, and fixed it. I performed this cycle 1 more…
0
votes
0 answers

'".build\electron\Code - OSS.exe"' is not recognized as an internal or external command

I am trying to compile, run and debug VSCode according to the How to Contribute guideline. I would like to do this locally, not with a development container or within WSL2. I have completed these steps: Installed Node v16.19.1 Installed…
0
votes
0 answers

Django sessions idle on localhost, pending forever after login callback

Django project cannot set sessions only on localhost, and the web keeps pending forever after login callback. Here is the log: "GET / HTTP/1.1" 302 0 "GET…
0
votes
2 answers

What should I do if my Android Studio's empty activity is not generating the layout file?

I am not getting any layout(.xml) file while creating an empty activity on android studio. It is said to be created on its own but I can not find the activity_main.xml; It was alright for the first project that I made and it's somehow not working…
0
votes
0 answers

Arguments against having a singleton object for database access in Next.js 13 in production mode?

The Next.js 13 docs recommend keeping a singleton object for database access in development mode as Node.js clears the cache upon each reload dropping the previous instances. It got me wondering. Why not have a singleton db object in production,…
0
votes
1 answer

Problem switching between multiple versions of PHP on MacOS Ventura

I'm using MacOS 13.4 on a 2021 MBP. I need to be able to toggle between versions of PHP to test PHP applications for compatibility across both PHP 7 and 8. I used brew to install PHP 8.2. Then discovered that core no longer allows versioning…
0
votes
0 answers

How to deploy Next js 13 App on Azure web app with different(dev ,test, prod) environments

I am trying to deploy Next js 13 app via Self Hosting(Azure) with different environments. I have tried including Server.js with dev and prod environments with custom web configuration. Server.js const express = require('express') const next =…
0
votes
0 answers

NODE_ENV=development node server.js is not working

NODE_ENV=development : The term 'NODE_ENV=development' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try…