Skip to content

Commit db32000

Browse files
committed
update
1 parent e994212 commit db32000

File tree

1 file changed

+22
-2
lines changed

1 file changed

+22
-2
lines changed

README.md

Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,34 @@
11
# Midjourney
2-
2+
A Discord Bot that can generate text based on a given prompt using [Replicate](https://replicate.com/)
33

44
## Installation
55

6+
[x] Create Discord Bot and get token and client id from [Discord Developer Portal](https://discord.com/developers/applications)
7+
8+
[x] Download [Node.js](https://nodejs.org/en/download/)
9+
10+
[x] Create [Replicate](https://replicate.com/) account and get token
11+
12+
[x] Download Midjourney
13+
614
```bash
715
git clone https://github.com/brblacky/Midjourney.git
816
cd Midjourney
917
npm install
1018
```
11-
19+
## Configuration
20+
21+
[x] Edit `config.ts` file
22+
23+
```ts
24+
export default {
25+
token: "", // Discord Bot Token
26+
clientId: "1109838882805125190", // Discord Bot Client ID
27+
color: "#00ff00",
28+
replicateToken: "", // Replicate Token from https://replicate.com/signin
29+
model: "stability-ai/stable-diffusion:db21e45d3f7023abc2a46ee38a23973f6dce16bb082a930b0c49861f96d1e5bf" as any
30+
}
31+
```
1232
## Usage
1333

1434
```bash

0 commit comments

Comments
 (0)