.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:E621_USER_AGENT=YourApplication/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.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.