First commit

This commit is contained in:
CyberRex
2026-05-23 17:03:05 +09:00
commit 40e7953ee5
52 changed files with 13004 additions and 0 deletions

16
src/server/index.js Normal file
View File

@@ -0,0 +1,16 @@
import { serve } from '@hono/node-server';
import { createApp } from './app.js';
import { env } from './config/env.js';
const app = createApp();
serve(
{
fetch: app.fetch,
port: env.port,
hostname: '127.0.0.1',
},
(info) => {
console.log(`CertRemind API listening on http://${info.address}:${info.port}`);
},
);