Your Rooster application is up and running.
This project is managed by Lucy. Use it to track cards, run tests, and browse documentation.
Open Lucyapp/frontend/html/app/backend/endpoints/app/backend/includes/routes.php// routes.php
return [
'/' => "$endpoints_dir/home.php",
'/about/' => "$endpoints_dir/about.php", // add your route
];
app/backend/endpoints/@gi() for input, exec_query() for DB, ok() to respond// app/backend/endpoints/api/greet.php
$name = gi('name');
ok(['message' => "Hello, $name"]);
Open the Documentation tab in Lucy to read the full Rooster Framework reference — covering routing, database access, validation, templating, and more.