#include #include #include "config.h" #include "routes.h" int main() { ctorm_app_t *app = NULL; ctorm_config_t app_config; config_t conf; char *host = NULL; if (!config_load(&conf)) return EXIT_FAILURE; host = config_get(&conf, "host"); ctorm_config_new(&app_config); app_config.disable_logging = true; app = ctorm_app_new(&app_config); // middlewares MIDDLEWARE_ALL(app, "/*", route_cors); MIDDLEWARE_ALL(app, "/*/*", route_cors); MIDDLEWARE_ALL(app, "/*/*/*", route_cors); // routes GET(app, "/list", route_list); GET(app, "/get/:name", route_get); ctorm_app_all(app, route_notfound); ctorm_app_local(app, "config", &conf); ctorm_info("starting the web server on %s", host); if (!ctorm_app_run(app, host)) ctorm_fail("failed to start the app: %s", ctorm_geterror()); ctorm_app_free(app); return EXIT_SUCCESS; }