fix: start the web server
Node.js CI / Lint and Test (push) Successful in 38s

This commit is contained in:
2025-10-04 19:05:37 -07:00
parent c7dd989a9e
commit b848009011
2 changed files with 5 additions and 13 deletions
+3 -13
View File
@@ -1,20 +1,10 @@
# New Repository Template
# Callista
This template contains all of our basic files for a new GitHub repository. There is also a handy workflow that will create an issue on a new repository made from this template, with a checklist for the steps we usually take in setting up a new repository.
If you're starting a Node.JS project with TypeScript, we have a [specific template](https://github.com/naomi-lgbt/nodejs-typescript-template) for that purpose.
## Readme
Delete all of the above text (including this line), and uncomment the below text to use our standard readme template.
<!-- # Project Name
Project Description
This is a Discord bot which allows you to bookmark messages to keep forever. You can add notes to the bookmarks to remember why you kept them.
## Live Version
This page is currently deployed. [View the live website.]
This page is currently deployed. [Install user app](https://discord.com/oauth2/authorize?client_id=1391494389477412906).
## Feedback and Bugs
+2
View File
@@ -17,6 +17,7 @@ import { editNote } from "./buttons/editNote.js";
import { bookmark } from "./interactions/bookmark.js";
import { deleteCmd } from "./interactions/deleteCmd.js";
import { note } from "./modals/note.js";
import { instantiateServer } from "./server/serve.js";
import { logger } from "./utils/logger.js";
const callista = new Client({
@@ -88,4 +89,5 @@ callista.on(Events.InteractionCreate, (interaction) => {
void handleInteraction(interaction);
});
instantiateServer();
await callista.login(process.env.BOT_TOKEN);