A simple Booru API written in TypeScript with support for multiple Boorus and Docker compatibility.
Find a file
2024-12-28 12:59:26 -05:00
.vscode first commit 2024-12-28 09:13:34 -05:00
config shoulda finished id, move route 2024-12-28 12:57:12 -05:00
src shoulda finished id, move route 2024-12-28 12:57:12 -05:00
types shoulda finished id, move route 2024-12-28 12:57:12 -05:00
.editorconfig first commit 2024-12-28 09:13:34 -05:00
.gitattributes first commit 2024-12-28 09:13:34 -05:00
.gitignore first commit 2024-12-28 09:13:34 -05:00
eslint.config.js first commit 2024-12-28 09:13:34 -05:00
LICENSE first commit 2024-12-28 09:14:12 -05:00
package.json first commit 2024-12-28 09:13:34 -05:00
README.md Update README.md 2024-12-28 12:59:26 -05:00
tsconfig.json first commit 2024-12-28 09:13:34 -05:00

booru-api

default config/secrets.ts file

const redisConfig: RedisConfig = {
	host: "127.0.0.1",
	port: 6379,
};

const e621Auth: Record<string, string> = {
	"User-Agent": "domain/1.0 (by username on e621)",
	Authorization: "Basic " + btoa("username:password"),
};

export { e621Auth, redisConfig };