view mrjunejune/main.c @ 64:a30944e5719e

Added vibe coded markdown to html script since it is useful for me. Updated Dowa so that it can be compiled without dirnet for windows.
author June Park <parkjune1995@gmail.com>
date Tue, 23 Dec 2025 15:18:46 -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);
}