update readme
This commit is contained in:
parent
58016ee4ea
commit
1ab25bd4f6
1 changed files with 21 additions and 10 deletions
31
README.md
31
README.md
|
@ -1,17 +1,28 @@
|
||||||
# booru-api
|
# booru-api
|
||||||
|
|
||||||
# default config/secrets.ts file
|
## Setup Instructions
|
||||||
|
|
||||||
```ts
|
1. Rename the example environment file to `.env`:
|
||||||
const redisConfig: RedisConfig = {
|
```bash
|
||||||
host: "127.0.0.1",
|
mv .example.env .env
|
||||||
port: 6379,
|
```
|
||||||
};
|
|
||||||
|
|
||||||
|
2. Start the application in detached mode:
|
||||||
|
```bash
|
||||||
|
docker compose up -d
|
||||||
|
```
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Default `config/secrets.ts` File
|
||||||
|
|
||||||
|
```typescript
|
||||||
const e621Auth: Record<string, string> = {
|
const e621Auth: Record<string, string> = {
|
||||||
"User-Agent": "domain/1.0 (by username on e621)",
|
"User-Agent": "your-domain/1.0 (by your-username on e621)",
|
||||||
Authorization: "Basic " + btoa("username:password"),
|
Authorization: "Basic " + btoa("your-username:your-password"),
|
||||||
};
|
};
|
||||||
|
|
||||||
export { e621Auth, redisConfig };
|
export { e621Auth };
|
||||||
```
|
```
|
||||||
|
|
||||||
|
> **Note**: Replace `your-username` and `your-password` with your e621 account credentials. Update the `User-Agent` string to include your domain and comply with e621's API guidelines.
|
||||||
|
|
Loading…
Add table
Reference in a new issue