feat: initial prototype (#3)
Node.js CI / Lint and Test (push) Successful in 42s

### Explanation

_No response_

### Issue

_No response_

### Attestations

- [ ] I have read and agree to the [Code of Conduct](https://docs.nhcarrigan.com/community/coc/)
- [ ] I have read and agree to the [Community Guidelines](https://docs.nhcarrigan.com/community/guide/).
- [ ] My contribution complies with the [Contributor Covenant](https://docs.nhcarrigan.com/dev/covenant/).

### Dependencies

- [ ] I have pinned the dependencies to a specific patch version.

### Style

- [ ] I have run the linter and resolved any errors.
- [ ] My pull request uses an appropriate title, matching the conventional commit standards.
- [ ] My scope of feat/fix/chore/etc. correctly matches the nature of changes in my pull request.

### Tests

- [ ] My contribution adds new code, and I have added tests to cover it.
- [ ] My contribution modifies existing code, and I have updated the tests to reflect these changes.
- [ ] All new and existing tests pass locally with my changes.
- [ ] Code coverage remains at or above the configured threshold.

### Documentation

_No response_

### Versioning

_No response_

Reviewed-on: #3
Co-authored-by: Naomi Carrigan <commits@nhcarrigan.com>
Co-committed-by: Naomi Carrigan <commits@nhcarrigan.com>
This commit was merged in pull request #3.
This commit is contained in:
2025-08-14 23:14:08 -07:00
committed by Naomi Carrigan
parent f67291b8da
commit c9ec681471
35 changed files with 6265 additions and 0 deletions
+56
View File
@@ -0,0 +1,56 @@
/**
* @copyright NHCarrigan
* @license Naomi's Public License
* @author Naomi Carrigan
*/
import { PrismaClient } from "@prisma/client";
import {
Client,
GatewayIntentBits,
Events,
} from "discord.js";
import { scheduleJob } from "node-schedule";
import { processCommand } from "./modules/processCommand.js";
import { instantiateServer } from "./server/serve.js";
import { logger } from "./utils/logger.js";
import type { Pavelle } from "./interfaces/pavelle.js";
const pavelle: Pavelle = {
db: new PrismaClient(),
discord: new Client({
intents: [
GatewayIntentBits.Guilds,
GatewayIntentBits.GuildMembers,
],
}),
throwCache: new Map<string, number>(),
};
pavelle.discord.once(Events.ClientReady, () => {
void logger.log("debug", `Logged in as ${pavelle.discord.user?.username ?? "unknown"}`);
});
pavelle.discord.on(Events.InteractionCreate, (interaction) => {
if (!interaction.isChatInputCommand()) {
return;
}
if (!interaction.inCachedGuild()) {
return;
}
void processCommand(pavelle, interaction);
});
pavelle.discord.on(Events.Error, (error) => {
void logger.error("Client error", error);
});
pavelle.discord.on(Events.Warn, (message) => {
void logger.log("info", message);
});
await pavelle.discord.login(process.env.BOT_TOKEN);
scheduleJob("bust-cache", "0 * * * *", () => {
pavelle.throwCache = new Map<string, number>();
});
instantiateServer();