Kha

Results 9 issues of Kha

Have you ever tested in production? After you run `sbt stage`, all the assets are no longer available at `val a = getClass.getResourceAsStream("target/web/public/main/javascripts/bundle.js")`, but instead packaged in a jar file.

Lets say I have an app `web`. Inside a template for this app, I load `app.js` like this `{% systemjs_import 'web/app' %}`. When in development mode, the system does not...

enhancement
question

When I inspected the actual SQL queries being run against DB, I found that for foreignkey and manytomany relationships, we have the `n+1` problem. For example, suppose there are 5...

help wanted
wontfix
📖 documentation

Would you support horizontal bar chart? This chart is good for anything related to progress tracking.

The command `uname -sm` only works for Unix-based OSes. Currently I have to manually set ```scala nativePlatform := "win32-x86_64" ```

help wanted
feature

Include Node 20 for Alpine build Set default Node version to 18 for both Alpine and Debian builds - [ ] Bugfix (non-breaking change which fixes an issue) - [x]...

Have you considered using higher-order function to make the code looks nicer? For example ``` javascript @animateThisComponent class MyComponent extends React { ... } ```

Currently the admins are defined in a list `adminEmails`, which is not flexible. Instead I think a function to resolve an admin role (return `Boolean`) is better. This way we...

The implicit function `genericObjectEncoder` does not work with Coproduct as descibed in the book. The current definition is as followed: ```scala implicit def genericObjectEncoder[A, H hEncoder.value.encode(gen.to(value))) ``` To make this...