Skip to content

Commit f08f657

Browse files
authored
docs: Improving installation instructions (#200)
## Please describe the changes this PR makes and why it should be merged: ## Status and versioning classification: <!-- Please move lines that apply to you out of the comment: - Code changes have been tested against the Discord API, or there are no code changes - I know how to update typings and have done so, or typings don't need updating - This PR changes the library's interface (methods or parameters added) - This PR includes breaking changes (methods removed or renamed, parameters moved or removed) - This PR **only** includes non-code changes, like changes to documentation, README, etc. --> - This PR **only** includes non-code changes, like changes to documentation, README, etc. # Important. - Write in camelCase, not snake_case. - Do not push to master/main without testing your changes first, make a branch if you have to.
2 parents 045c7cb + ecdacf9 commit f08f657

File tree

1 file changed

+16
-11
lines changed

1 file changed

+16
-11
lines changed

djs-bot/README.md

Lines changed: 16 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -37,14 +37,19 @@ CLIENTSECRET=botClientSecretToken
3737
DEVUID=yourDiscordUID *
3838
DATABASE_URL="dbArch://user:pass@host:port/db" * # If you want DB functionality
3939
```
40-
- To actually set up the bot and get it running you need to install all required dependencies and post slash commands to the discord bot application:
41-
```bash
42-
npm run update
43-
npm run deploy # this should be a one time thing
44-
```
45-
- To run the bot:
46-
```bash
47-
npm run start
48-
# or
49-
npm run db-start # if you have your own DB setup
50-
```
40+
- To actually set up the bot and get it running, you can follow one of these steps:
41+
- With Docker:
42+
You can follow [this instructions](https://github.com/wtfnotavailable/Discord-MusicBot?tab=readme-ov-file#docker-setup) to set up the bot with Docker
43+
44+
- Without Docker:
45+
You need to install all required dependencies and post slash commands to the discord bot application
46+
```bash
47+
npm run update
48+
npm run deploy # this should be a one time thing
49+
```
50+
To run the bot:
51+
```bash
52+
npm run start
53+
# or
54+
npm run db-start # if you have your own DB setup
55+
```

0 commit comments

Comments
 (0)