ssl enforce

This commit is contained in:
2026-05-10 19:40:57 +02:00
parent 3398982ca8
commit 279befa2ad
8 changed files with 67 additions and 7 deletions

View File

@@ -10,7 +10,8 @@ async function start() {
const app = createApp();
const server = app.listen(config.port, () => {
console.log(`Dune API listening on http://localhost:${config.port}`);
console.log(`Swagger UI available at http://localhost:${config.port}/docs`);
console.log(`Public API URL: ${config.public.apiUrl}`);
console.log(`Public Swagger UI URL: ${config.public.uiUrl}/docs`);
});
async function shutdown(signal) {