Files
nerak/examples/03_hello_world_html_db/app.c
T

20 lines
391 B
C
Raw Normal View History

2025-07-24 12:46:01 -05:00
#include <nerak.h>
#include <sqlite.h>
config(main){
sqlite_config(
"hello_db",
"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")
}
);
}