A simple Booru API written in TypeScript with support for multiple Boorus and Docker compatibility.
.vscode | ||
config | ||
src | ||
types | ||
.editorconfig | ||
.example.env | ||
.gitattributes | ||
.gitignore | ||
compose.yml | ||
Dockerfile | ||
eslint.config.js | ||
LICENSE | ||
package.json | ||
README.md | ||
tsconfig.json |
booru-api
Setup Instructions
-
Rename the example environment file to
.env
:mv .example.env .env
-
Start the application in detached mode:
docker compose up -d
Default config/secrets.ts
File
const e621Auth: Record<string, string> = {
"User-Agent": "your-domain/1.0 (by your-username on e621)",
Authorization: "Basic " + btoa("your-username:your-password"),
};
export { e621Auth };
Note
: Replace
your-username
andyour-password
with your e621 account credentials. Update theUser-Agent
string to include your domain and comply with e621's API guidelines.