This commit is contained in:
nin0 2025-04-25 05:52:08 -04:00
parent 7c74f50c35
commit 7021328618
Signed by: nin0
SSH key fingerprint: SHA256:NOoDnFVvZNFvqfXCIhzr6oCTDImZAbTTuyAysZ8Ufk8
2 changed files with 12 additions and 0 deletions

2
.env.example Normal file
View file

@ -0,0 +1,2 @@
CLIENT_ID=
CLIENT_SECRET=

10
build.mjs Normal file
View file

@ -0,0 +1,10 @@
import { build } from "esbuild";
await build({
entryPoints: ["src/index.ts"],
bundle: true,
platform: "node",
outfile: "dist/index.js",
minify: true,
treeShaking: true // shake it off shake it offff
});