Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
31 views

I am building an application using AdonisJS 6, Vue 3, and Inertia.js. I'm trying to integrate Pinia for state management, but I'm running into an error: I read online and see other issues here, but I ...
Ebraheem Al-hetari's user avatar
0 votes
0 answers
52 views

I'm building an API using AdonisJS 6, Lucid ORM, knex-postgis, PostgreSQL and PostGIS. I have a posts table that includes a coordinates column of type geometry(Point, 4326). I want to store ...
Bilal's user avatar
  • 173
0 votes
0 answers
76 views

I am desperate. I am building NextJS app with AdonisJS backend. This app will work like warehouse planner, user should be able to put some elements like floor, wall etc. on grid and move it around, ...
Marek's user avatar
  • 119
1 vote
1 answer
93 views

I am using AdonisJS V6 ("@adonisjs/core": "^6.17.2") and auth version "@adonisjs/auth": "^9.3.1", for backend development. I have two models User and Admin. ...
Sakil's user avatar
  • 1,123
0 votes
0 answers
108 views

I'm encountering issues when trying to create a new AdonisJS project using the following command: npm init adonis-ts-app@latest test-adonisjs On my Windows 11 machine, the process begins correctly—the ...
Jonh Alex's user avatar
0 votes
0 answers
51 views

There's a AdonisJS application version 5.9.0 that uses signed URLs. The function exists on the http-server package and ends up calling the adonisjs-encryption sign method to sign URLs. The signing ...
chsakell's user avatar
  • 180
0 votes
0 answers
108 views

I created a project with adonisjs by setting up google oAuth authentication. When I launch a call via postman on a route protected by my auth_middleware, I get the error 401 E_UNAUTHORIZED_ACCESS ...
nathaliej's user avatar
2 votes
0 answers
264 views

I would like to use AdonisJS in a mono repo managed by turbo repo. I have an admin app (React) and a backend app (AdonisJS). I have a type package to share my types between backend and frontend. In my ...
Dorian's user avatar
  • 31
1 vote
0 answers
187 views

I'm using AdonisJS 6 to create a REST API for my web app (and mobile app in the future). The user can login using email + password or Google (OAuth). My API is running in URL https://api.example.com ...
andyr's user avatar
  • 303
0 votes
0 answers
208 views

I finally managed to compile (npx tsc) and execute my Adonis 6 typescript app with pm2: When I check with pm2 list looks like everything is ok: However, checking logs I see this error: I am using ...
guyaloni's user avatar
  • 6,020
1 vote
2 answers
1k views

Context Hello, I have some questions about a project, and my ideas are not that clear. I would create a local first application with ElectronJS, so basically store some data like user data, user ...
WailRoth's user avatar
0 votes
0 answers
57 views

I'm trying to Dockerize Adonis following the tutorial of Adonis and the base installation : https://v5-docs.adonisjs.com/cookbooks/dockerizing-adonis https://docs.adonisjs.com/guides/getting-started/...
Nexko's user avatar
  • 1
0 votes
1 answer
38 views

I am running a CQL query in DbVisualizer tool which is working fine, but same query when I am running through AdonisJS (nodejs) I am getting below error: Error executing Redis command: ResponseError: ...
Dinesh Suthar's user avatar
0 votes
1 answer
147 views

My business case is for an online store Items can be put into orders. Each item can be only in one active order at a time. When order is cancelled, all the items return to available stock. I'd like ...
Milan Smolík's user avatar
0 votes
1 answer
356 views

I have some problem with class AdonisJS. My code LoginController export default class LoginController { constructor(protected authService: AuthService) {} @inject() doLogin({ request }) { ...
Tojo's user avatar
  • 249
1 vote
0 answers
431 views

I ask my first question on stack because I despair :( Sorry if my english isn't good ! I develop a simple Quiz app with adonisjs to learn the framework and application deployment. My problem is during ...
Lief's user avatar
  • 11
0 votes
1 answer
730 views

I'm encountering issues while dockerizing my project developed in AdonisJS 6. I have configured my project using Edge and TailwindCSS to process PDFs with Playwright, and I've used Vite to set up the ...
Izlia's user avatar
  • 422
0 votes
1 answer
209 views

I'm seeking guidance on utilizing the DOM in AdonisJS for a specific use case. I understand that AdonisJS is primarily designed for server-side development and may not automatically include TypeScript ...
Izlia's user avatar
  • 422
0 votes
1 answer
225 views

Im trying to retrieve data where date time is very important. But the time stored in DB is correct, but it mismatch when I called the API. The date and time stored in DB with data type "...
Marcus Neo's user avatar
4 votes
1 answer
6k views

I am about to embark on a new project. So far, I have been working with ExpressJS for my backend, but I find that I am reinventing the wheel a bit too much. Since I always strive to improve my ...
Gaya's user avatar
  • 85
1 vote
1 answer
85 views

My current code is like this which alternates between showing every 2 then every 1 item inside loop. I want it to show every 3 then every 1 item. I use Adonis JS template engine (Edge) <div class=&...
Mehdi Azmoudeh's user avatar
1 vote
0 answers
177 views

I want to download excel using below code. Are there any easy way to download excel? const filename = request.input('filename') const users = await User.all() const columnKeys = Object.keys(users[0].$...
Adonis js's user avatar
4 votes
0 answers
620 views

I installed adonis core for building my SDK for adonisjs but I get Cannot find module '@ioc:Adonis/Core/HttpContext' or its corresponding type declarations.ts(2307) I'm not building an adonis server ...
devGrammer's user avatar
0 votes
1 answer
173 views

I'm working on an application in Adonis.js, and I'm designing the database structure. In this application, a user can be associated with a specific role (like 'admin,' 'user,' etc.) that determines ...
Gilson Garcia's user avatar
0 votes
2 answers
548 views

I have a TaskValidator class in Adonis that handles validation. It works fine for normal HTTP requests in my controller. However, I also want it to be able to handle validation where there is no http ...
Ash's user avatar
  • 169

1
2 3 4 5
16