A simple Booru API written in TypeScript with support for multiple Boorus and Docker compatibility.
Find a file
2025-04-03 16:10:20 -04:00
.vscode first commit 2024-12-28 09:13:34 -05:00
config gelbooru should work, remove caching, fix random 2025-04-03 16:05:41 -04:00
src gelbooru should work, remove caching, fix random 2025-04-03 16:05:41 -04:00
types gelbooru should work, remove caching, fix random 2025-04-03 16:05:41 -04:00
.editorconfig first commit 2024-12-28 09:13:34 -05:00
.env.example gelbooru should work, remove caching, fix random 2025-04-03 16:05:41 -04:00
.gitattributes first commit 2024-12-28 09:13:34 -05:00
.gitignore was never added to .gitignore 2025-04-03 16:10:20 -04:00
compose.yml gelbooru should work, remove caching, fix random 2025-04-03 16:05:41 -04:00
Dockerfile update dockerfile 2025-01-05 21:02:28 -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 gelbooru should work, remove caching, fix random 2025-04-03 16:05:41 -04:00
README.md gelbooru should work, remove caching, fix random 2025-04-03 16:05:41 -04:00
tsconfig.json first commit 2024-12-28 09:13:34 -05:00

booru-api

Setup Instructions

Production Environment

  1. Clone the repository:

    git clone https://git.creations.works/creations/booru-api
    cd booru-api
    
  2. Copy the example environment file to .env:

    cp .env.example .env
    
  3. Start the application in detached mode:

    docker compose up -d
    

Development Environment

  1. Clone the repository:

    git clone https://git.creations.works/creations/booru-api
    cd booru-api
    
  2. Copy the example environment file to .env:

    cp .env.example .env
    
  3. Install dependencies using Bun:

    bun install
    
  4. Start the development server:

    bun dev
    

Note

To use the e621 API, you must update the following environment variables in your .env file:

E621_USER_AGENT=YourApplication/1.0 (by username on e621)
E621_USERNAME=your-username
E621_API_KEY=your-apikey

Replace your-username and your-apikey with your e621 account credentials. Update the User-Agent string to include your application name, version, and a contact method (e.g., your e621 username) to comply with e621's API guidelines.

To use the Gelbooru API, you must also update the following:

GELBOORU_API_KEY=your-apikey
GELBOORU_USER_ID=your-user-id

You can find these credentials in your Gelbooru account settings. These are required for authenticated API requests and higher rate limits.