view mrjunejune/main.c @ 71:75de5903355c

Giagantic changes that update Dowa library to be more align with stb style array and hashmap. Updated Seobeo to be caching on server side instead of file level caching. Deleted bunch of things I don't really use.
author June Park <parkjune1995@gmail.com>
date Sun, 28 Dec 2025 20:34:22 -0800
parents 84672efec192
children 4532ce6d9eb8
line wrap: on
line source

/**
 *
 * MrJuneJune
 *
 *   - Server side generated my blog created using entirely in C.
 *   - Resume
 *   - What have I done?
 *   - Blogs....
 *
 */

#include "seobeo/seobeo.h"

volatile sig_atomic_t stop_server = 0;

void handle_sigint(int sig) {
  printf("Failed\n");
  stop_server = 1;
}

int main(void)
{
  Seobeo_Web_Server_Start("mrjunejune/pages", "6969", SEOBEO_MODE_EDGE, 2);
}