453 questions
0
votes
0
answers
46
views
How to store all vite entry points in the same non-root folder?
I have the following structure
│ vite.config.ts
│ index.html
│
└───admin
│ │ index.html
│
└───info
│ index.html
With this in vite.config.ts
build: {
target: "esnext",
...
1
vote
0
answers
38
views
How to Identify the Entry Point of Snort Project's Source Code?
I am currently planning to study the C++ source code of the Snort project on GitHub, but I am not sure where to start. Specifically, I am unsure about which file is the entry point, or which file the ...
3
votes
1
answer
181
views
How to use SDL2 with .NET MAUI
I am trying to use SDL2 with .NET MAUI.
I have tried to build the native libraries using the androidbuildlibs.sh at the buildscripts directory. it generated libSDL.so for different architectures. and ...
0
votes
1
answer
551
views
Cannot start service php: failed to create task for container: failed to create shim task
I want to dockerize my laravel application but I am getting this error
ERROR: for backend_php_1 Cannot start service php: failed to create task for container: failed to create shim task: OCI runtime ...
0
votes
1
answer
203
views
How to set vite config to remove index file sunbfolder while mutlple entry point
I am using vite with vuejs i have multiple entry points my issue I am getting a extra subfolder as login like below (my current folder structure).
├─ my-app/
│ ├─ dist
├─ login
├─ login
├─index.html
...
-2
votes
1
answer
357
views
Why my strategy doss not execute in tradingview? it creates no trade? caution! this strategy did not generate any orders throughout the testing range
`//@version=5 strategy("4:4 S1", overlay=true) // Indicator Inputs fairValueGap = input(0.5, "Lux Algo Fair Value Gap") cciLevel = input(100, "CCI Level") cci = ta.cci(...
1
vote
1
answer
87
views
How to import from a vue3 lib
I'm creating a big big vue 3 library with Vite and Typescript. I'm trying to have the most optimized app for the final build. I don't understant whats the difference beetween importing from the lib or ...
0
votes
0
answers
612
views
Spring security is returning 401 for all exception
Working with spring security 6 + opaque token I am receiving, always, 401 when some exception happens during authentication process. Even when authorisation/authentication server is down I am getting ...
1
vote
0
answers
2k
views
Docker-Compose: /entrypoint.sh: no such file or directory
I'm trying to build a compose file with Django services with an entrypoint for each service to perform migrations, but docker can't locate the entrypoint.sh when I mount my directory, but it works ...
1
vote
0
answers
387
views
Re-locating App in FLASH not working, entry point unclear (STM32F072)
I'm currently trying to understand how bootloaders work and wanted to create a small example for this.
My first step was to just re-locate my application code into a different area of the FLASH for my ...
0
votes
3
answers
2k
views
Telegram bot with python-telegram-bot v20 via serverless function
I created a telegram bot using python-telegram-bot v 20.2. I run it on the computer using application.run_polling(), and everything works fine.
But when I try to place it on a serverless structure ...
1
vote
1
answer
182
views
Error: Entrypoint is not a Dart file in android studio
I have a this Error: Entrypoint is not a Dart file in android studio.
Click on File-> Project Structure -> Module then add root folder of your project.
I have done this things but it not ...
0
votes
0
answers
169
views
Creating a network with a specific name inside a container
I would like to create a new container that has a new Network interface called cifx0.
I have created a Dockerfile including the entrypoint.
My Question is: can I build an entrypoint.sh file like this:
...
1
vote
1
answer
93
views
Python entry_point in virtual environment not working
I have a virtual environment where I am developing a Python package. The folder tree is the following:
working-folder
|-setup.py
|-src
|-my_package
|-__init__.py
|-my_subpackage
|-...
0
votes
1
answer
199
views
Dealing with issues at early stages of WebPack set up
I am practicing the setup of a web project with WebPack, and I am meeting several difficulties in the process of configuration at its earliest stage. Here's my process:
1.- The structure of the ...
0
votes
1
answer
201
views
Single entrypoint for pipeline steps in a docker image
I have a docker image which encapsulates some processing steps: A, B, C with a linear dependency: A -> B -> C. Each step produces some artifacts (files) that will be required for subsequent ...
0
votes
1
answer
279
views
how to write entrypoint scripts on windows
I was asked to build an image for python programs and for example if we create 3 python programs and create a an image for them and if we run that image, basically a container will be created and will ...
0
votes
0
answers
319
views
Qt 6.2.4 deployed application with MinGW don't run on Win 7 64:
Entry point not found (api-ms-win-core-synch-l1-2-0.dll)
I have already tried to install vc redistributable and move the dll to the application folder.
The strange thing is that the dll is present in ...
5
votes
1
answer
11k
views
Makefile entrypoint not found
I have installed vscode, but this message always opens (bottom right in the picture). I have attached a screenshot for you. Anyone know how I can fix this?
0
votes
1
answer
305
views
Entrypoint clause not working in the dockerfile
I'm trying to build a container using this docker file
FROM ubuntu:16.04
RUN apt-get update && apt-get install -y --no-install-recommends \
python3.5 \
python3-pip \
ENTRYPOINT [&...
-1
votes
1
answer
2k
views
How do I find out entry-point function in C++ dll project?
I built one project from GitHub. The project was built successfully, but I can't find the entry-point function in its code. The project settings are like this:
How do I find out the entry-point ...
16
votes
4
answers
34k
views
C# Only one compilation unit can have top-level statements
I just started learning c#, I created C# console application. To understand the concepts, I watched videos of how to setup vs code for c#
When I run the dotnet new console command in VS code terminal, ...
0
votes
1
answer
468
views
how to start a long position by adding a percentage lower condition with Pine Script
I'm trying to figure out how to start a long entry with a percentage lower. For instance, when ema 20 crossover ema 50, the long entry will trigger only 1% lower than the pricelevel once the crossover ...
0
votes
0
answers
57
views
Issue with setup.py install | Callable script try to launch with python 2.7
I'm looking into making a script callable from the terminal using entry_points/console_scripts in the setup.py.
So far when I used the editable install all works well.
Installing like this:
% pip3 ...
0
votes
0
answers
203
views
Docker Compose with custom django app, ngnix, postgres, certbot, and letsencrypt
I am building my first customs Docker with Docker compose and I feel I am very close to finishing it but I have having an issue with what seem to be the entrypoint
FYI i am tryng to deploy a django ...