lapis icon indicating copy to clipboard operation
lapis copied to clipboard

A web framework for Lua and OpenResty written in MoonScript

Results 130 lapis issues
Sort by recently updated
recently updated
newest added

I'm wondering if there's a good, or recommended way to go about compiling nginx `include` directives with the lapis environment configs? For example, I have the following line inside nginx.conf...

Is there any easier way to debug etlua errors that I've missed? I keep getting cryptic stack traces that are hard to get to the bottom of since they dont...

I recall some features of the main application do not work on sub-applications, is this one of them?

In my application, I have two slow actions: - create multiple instances of a model (~40 instances) - update multiple instances of a model (~20 instances) Both of them take...

How i can set up connect to postgresql with standart ssl? Standart settings cause error: ```FATAL: no pg_hba.conf entry for host "10.253.1.15", user "tvPlanning", database "emmaTvData", SSL off``` I try...

many of my applications follow the pattern app:get("name", "route", require("pages.name"), and it would be convenient to just pass `true` as a handler, similar to how `render: true` works. Adding this...

When you attempt to call create without arguments it crashes with the error `[...]model.lua:169: bad argument #1 to 'pairs' (table expected, got nil)` I'm not sure if there's any use-cases...

In my application, I have the following routes: ``` [something: "/*"]: => "/submit": => "/ksp/*: => ``` I would have thought trying to load `"/ksp/craft/3"` for example would go to...