Update README.md

This commit is contained in:
creations 2024-12-28 09:15:58 -05:00
parent 186178c066
commit 645e0a0d2b

View file

@ -1 +1,17 @@
# booru-api # booru-api
# default config/secrets file
```ts
const redisConfig: RedisConfig = {
host: "127.0.0.1",
port: 6379,
};
const e621Auth: Record<string, string> = {
"User-Agent": "domain/1.0 (by username on e621)",
Authorization: "Basic " + btoa("username:password"),
};
export { e621Auth, redisConfig };
```