A simple Booru API written in TypeScript with support for multiple Boorus and Docker compatibility.
.vscode | ||
config | ||
src | ||
types | ||
.editorconfig | ||
.env.example | ||
.gitattributes | ||
.gitignore | ||
compose.yml | ||
Dockerfile | ||
eslint.config.js | ||
LICENSE | ||
package.json | ||
README.md | ||
tsconfig.json |
booru-api
Setup Instructions
Production Environment
-
Clone the repository:
git clone https://git.creations.works/creations/booru-api cd booru-api
-
Copy the example environment file to
.env
:cp .env.example .env
-
Start the application in detached mode:
docker compose up -d
Development Environment
-
Clone the repository:
git clone https://git.creations.works/creations/booru-api cd booru-api
-
Copy the example environment file to
.env
:cp .env.example .env
-
Install dependencies using Bun:
bun install
-
Start the development server:
bun dev
Note
To use the e621 API, you must update the following environment variables in your
.env
file:# REQUIRED if you want to use the e621 API E621_USER_AGENT=YourApplicationName/1.0 (by username on e621) E621_USERNAME=your-username E621_API_KEY=your-apikey
Replace
your-username
andyour-apikey
with your e621 account credentials. Update theUser-Agent
string to include your application name, version, and a contact method (e.g., your e621 username) to comply with e621's API guidelines.