655 B
655 B
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.