Bruno Bernard

Results 84 comments of Bruno Bernard

The repo is empty we cannot fork it

I answered it here: (I am new on Github, yay) at #35

I found this, hope it helps. in this directory: `~/.config/autostart` You will find the startup file: `Temps.app.desktop` Open it with an editor, remove the ".app" on the line : Exec=/home/artechnology/Temps-linux-x64/Temps.app...

I think it should remain strict, instead we should have another function similar to prisma: https://www.prisma.io/docs/orm/prisma-client/queries/aggregation-grouping-summarizing ```javascript await SomeModel.aggregate({ $avg: { age: true, }, $count: { age: true, }, })...

https://github.com/tymondesigns/jwt-auth/issues/2241

The tymondesigns/jwt-auth `access` token has an hybrid behavior. It can be used as a `refresh` token and as an `access` token. Once it has passed the expiration time in minutes,...

Instead of building locally, maybe it should *remain* the same concept as we have right now, but locked to a repository. Example, all concept stays the same, you deploy the...

True. It should be "ghcr.io/tursodatabase/libsql-server"

Due to the nature of the project. This is an django app within itself. And I think it will be hard to integrate such feature to Django Ninja. Maybe look...

Not sure, but Maybe try to create a [global auth](https://django-ninja.dev/guides/authentication/#global-authentication) ``` python router = Router(tags=["Expense"], auth=AuthHere) #