Initial commit

This commit is contained in:
Theresa Treimer 2025-07-10 20:18:49 +02:00
commit 91ff76ac29
16 changed files with 913 additions and 0 deletions

14
lapis/config.lua Normal file
View file

@ -0,0 +1,14 @@
local config = require("lapis.config")
config("development", {
server = "nginx",
code_cache = "off",
num_workers = "1",
host = "http://localhost:8080"
})
config("production", {
server = "nginx",
num_workers= "1",
host = "https://cups.teabucket.eu"
})