Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 | /** * @copyright nhcarrigan * @license Naomi's Public License * @author Naomi Carrigan */ import fastify from "fastify"; import { logHandler } from "../utils/logHandler.js"; const html = `<!DOCTYPE html> <html> <head> <title>Aria Iuvo</title> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> <meta name="description" content="Bot to translate your messages on Discord!" /> <script src="https://cdn.nhcarrigan.com/headers/index.js" async defer></script> </head> <body> <main> <h1>Aria Iuvo</h1> <section> <p>Bot to translate your messages on Discord!</p> </section> <section> <h2>Links</h2> <p> <a href="https://git.nhcarrigan.com/nhcarrigan/aria-iuvo"> <i class="fa-solid fa-code"></i> Source Code </a> </p> <p> <a href="https://docs.nhcarrigan.com/"> <i class="fa-solid fa-book"></i> Documentation </a> </p> <p> <a href="https://chat.nhcarrigan.com"> <i class="fa-solid fa-circle-info"></i> Support </a> </p> </section> </main> </body> </html>`; /** * Starts up a web server for health monitoring. */ export const instantiateServer = (): void => { try { const server = fastify({ logger: false, }); server.get("/", (_request, response) => { response.header("Content-Type", "text/html"); response.send(html); }); server.listen({ port: 5001 }, (error) => { if (error) { logHandler.error(error); return; } logHandler.info("Server listening on port 5001."); }); } catch (error) { logHandler.error(error); } }; |