nerak repo

This commit is contained in:
2026-07-09 23:11:34 -05:00
committed by nightshade
commit ea13ec86ec
84 changed files with 5404 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
#include <nerak.h>
#include <sqlite.h>
config(main){
sqlite_database(
.name = "hello_db",
.connect = "file:hello.db?mode=rwc",
.migrations = {"create_hello_world_table"},
.seeds = {"seed_hello_world"}
);
resource("home", "/",
.get = {
sqlite_query({"hello_db", "get_hello_world", "hello_world_data"}),
mustache("hello_world", "hello"),
respond("hello")
}
);
}