Compare commits
2
Commits
4bd77fad8a
...
ac087c458d
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
ac087c458d | ||
|
|
2982c1ee99 |
+12
-3
@@ -7,11 +7,20 @@ WORKDIR /app
|
|||||||
COPY package.json bun.lock ./
|
COPY package.json bun.lock ./
|
||||||
RUN bun install --frozen-lockfile --production
|
RUN bun install --frozen-lockfile --production
|
||||||
|
|
||||||
FROM oven/bun:1-alpine AS runner
|
FROM oven/bun:1-alpine AS builder
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
COPY --from=deps /app/node_modules ./node_modules
|
COPY --from=deps /app/node_modules ./node_modules
|
||||||
COPY tsconfig.json ./
|
COPY package.json tsconfig.json ./
|
||||||
COPY src ./src
|
COPY src ./src
|
||||||
|
|
||||||
|
RUN bun run build
|
||||||
|
|
||||||
|
FROM oven/bun:1-alpine AS runner
|
||||||
|
WORKDIR /app
|
||||||
|
COPY --from=builder /app/dist ./dist
|
||||||
|
|
||||||
|
RUN mkdir -p /app/data && chown -R bun:bun /app/data
|
||||||
|
VOLUME ["/app/data"]
|
||||||
|
|
||||||
USER bun
|
USER bun
|
||||||
CMD ["bun", "src/index.ts"]
|
CMD ["bun", "dist/index.js"]
|
||||||
|
|||||||
@@ -0,0 +1,7 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
set -euo pipefail
|
||||||
|
cd "$(dirname "$0")"
|
||||||
|
|
||||||
|
fly secrets import --stage < .env.production
|
||||||
|
fly deploy
|
||||||
@@ -1,11 +1,16 @@
|
|||||||
# fly.toml app configuration file generated for kaczynski-bot-2-0 on 2026-05-16T14:37:01-04:00
|
# fly.toml app configuration file generated for kaczynski-bot on 2026-08-22T19:58:11-04:00
|
||||||
#
|
#
|
||||||
# See https://fly.io/docs/reference/configuration/ for information about how to use this file.
|
# See https://fly.io/docs/reference/configuration/ for information about how to use this file.
|
||||||
#
|
#
|
||||||
|
|
||||||
app = 'kaczynski-bot-2-0'
|
app = 'kaczynski-bot'
|
||||||
primary_region = 'iad'
|
primary_region = 'iad'
|
||||||
|
|
||||||
|
[build]
|
||||||
|
[[mounts]]
|
||||||
|
source = 'data'
|
||||||
|
destination = '/app/data'
|
||||||
|
|
||||||
[http_service]
|
[http_service]
|
||||||
internal_port = 8080
|
internal_port = 8080
|
||||||
force_https = true
|
force_https = true
|
||||||
|
|||||||
+2
-1
@@ -6,7 +6,8 @@
|
|||||||
"@types/node": "^25.9.5"
|
"@types/node": "^25.9.5"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "bun run src/index.ts"
|
"dev": "bun run src/index.ts",
|
||||||
|
"build": "bun build ./src/index.ts $(find src/cmd/registry -name \"*.ts\") --target bun --minify --splitting --root src --outdir ./dist"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"typescript": "^5.9.3"
|
"typescript": "^5.9.3"
|
||||||
|
|||||||
@@ -1,15 +1,17 @@
|
|||||||
import type { Message } from "discord.js";
|
import type { Message } from "discord.js";
|
||||||
import { readdir } from "fs/promises";
|
import { readdir } from "fs/promises";
|
||||||
|
import { dirname } from "path";
|
||||||
import type { Command } from "../models";
|
import type { Command } from "../models";
|
||||||
|
|
||||||
const CMD_PREFIX = ".";
|
const CMD_PREFIX = ".";
|
||||||
|
const CMD_REGISTRY_DIR = `${dirname(Bun.main)}/cmd/registry`;
|
||||||
|
|
||||||
export default abstract class CommandService {
|
export default abstract class CommandService {
|
||||||
private static registry: Record<string, Command> = {}
|
private static registry: Record<string, Command> = {}
|
||||||
|
|
||||||
static async init() {
|
static async init() {
|
||||||
const commands = await Promise.all(
|
const commands = await Promise.all(
|
||||||
(await readdir(`${import.meta.dir}/../cmd/registry`)).map(async file => (await import(`../cmd/registry/${file}`)).default satisfies Command)
|
(await readdir(CMD_REGISTRY_DIR)).map(async file => (await import(`${CMD_REGISTRY_DIR}/${file}`)).default satisfies Command)
|
||||||
);
|
);
|
||||||
for (const command of commands)
|
for (const command of commands)
|
||||||
CommandService.registry[command.name] = command;
|
CommandService.registry[command.name] = command;
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ interface Data {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export default class DataService {
|
export default class DataService {
|
||||||
private static readonly DATA_PATH = "./data.json";
|
private static readonly DATA_PATH = "./data/data.json";
|
||||||
private static file: Bun.BunFile | undefined;
|
private static file: Bun.BunFile | undefined;
|
||||||
private static _data: Data = {
|
private static _data: Data = {
|
||||||
// default values (will be overwritten)
|
// default values (will be overwritten)
|
||||||
|
|||||||
Reference in New Issue
Block a user