Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
71e0d78
refactor: improve subcmd type
Sv443 Jan 21, 2023
73bdb37
fix: replace randomUUID with nanoid 4 better perf
Sv443 Jan 21, 2023
2205eb4
fix: exec imports
Sv443 Jan 21, 2023
a00daff
feat: unfinished reminder rescheduling
Sv443 Jan 21, 2023
9009c06
fix: wrong prop in /premium toggle
Sv443 Jan 21, 2023
b7a6f3c
feat: isDestroyed() method on all emitting classes
Sv443 Jan 21, 2023
a0ab1ae
feat: unfinished reminder rescheduling
Sv443 Jan 21, 2023
12cbb51
m
Sv443 Jan 21, 2023
cf610c2
fix: joining guilds didn't register cmds (yikes)
Sv443 Jan 21, 2023
07ffff3
chore: update readme uwu
Sv443 Jan 21, 2023
d4e9086
feat: delete below & including ctx command
Sv443 Jan 30, 2023
a729b60
fix: delete below stuff
Sv443 Jan 30, 2023
8770a88
fix: delete below: diff text for 1 and n case
Sv443 Jan 30, 2023
e2c1309
feat: emoji ctx menu
Sv443 Jan 30, 2023
408153c
fix: deletebelow interaction already replied
Sv443 Jan 30, 2023
cc01ff3
chore: add new readme, move old one
Sv443 Jan 30, 2023
8e42285
why u not commit
Sv443 Jan 30, 2023
9743c33
chore: update deps
Sv443 Mar 18, 2023
b086273
fix: random errors
Sv443 Mar 18, 2023
4f6bd1e
fix: another error
Sv443 Mar 18, 2023
6c8757d
remove emoji ctx command for now
Sv443 Mar 18, 2023
a0797f7
refactor: deprecate replyOpts, consolidate BM & PE
Sv443 Mar 18, 2023
90a153d
refactor: replace deprecated enum values
Sv443 Mar 18, 2023
bef89c0
chore: readme
Sv443 Mar 18, 2023
aea9016
feat: shit that almost works but it might as well be completely broken
Sv443 Mar 18, 2023
1baeb91
fix: switch to ferret npm package
Sv443 Mar 19, 2023
43c8823
mfw
Sv443 Mar 19, 2023
198c6b1
chore: readme
Sv443 Mar 21, 2023
4904e0a
ngl stuff doe
Sv443 Mar 21, 2023
ba68585
when me when the
Sv443 Mar 21, 2023
5a9e1e3
refactor: remove reactionroles
Sv443 Mar 23, 2023
0c8c0c9
refactor: /define and Command.useButtons stuffs
Sv443 Mar 24, 2023
1e96b5b
feat: add env toggle for music cmds
Sv443 Apr 9, 2023
f8eb9b1
refactor: misc stuff
Sv443 Apr 9, 2023
cf59110
refactor: update redis section in readme
Sv443 Apr 9, 2023
de9b807
refactor: begin rewrite of /reminder :hollow:
Sv443 Apr 9, 2023
36309cd
refactor: fix misc texts
Sv443 Apr 10, 2023
d4f3774
feat: update clearCommands
Sv443 May 10, 2023
a333a97
refac: consolidate command hash stuff
Sv443 May 10, 2023
ec0624b
fix: too long field values despite truncating
Sv443 May 10, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 18 additions & 11 deletions .env.template
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,29 @@
BOT_TOKEN=123
CLIENT_ID=123 # Also called Application ID

# Dependencies (optional)
STEAM_TOKEN=123 # https://steamcommunity.com/dev/apikey
GENIURL_TOKEN= # https://api.sv443.net/geniurl
# Database
DATABASE_URL="postgresql://johndoe:randompassword@localhost:5432/mydb?schema=public" #connection string

# These are both optional, and if not present, spotify can be scraped
SPOTIFY_CLIENT_ID=123123123 # https://developer.spotify.com/dashboard/
SPOTIFY_CLIENT_SECRET=123123123

# Settings
# Client Settings
COMMAND_PREFIX="" # Set to something like an abbreviation of the client's name so all commands have that prefix and can be distinguished better - empty for none
DEV_IDS="123,456" # All user IDs that should have dev perms
BELL_ON_READY=false # Set to true to send a console bell sound when the client is ready
EXEC_CMD_ENABLED=true # Set to false to disable the /exec command

# Database
DATABASE_URL="postgresql://johndoe:randompassword@localhost:5432/mydb?schema=public" #connection string

# Lavalink
# Commands
EXEC_CMD_ENABLED=false # Set to true to enable the /exec command
MUSIC_CMDS_ENABLED=false # Set to true to enable the VC music commands


# Dependencies
STEAM_TOKEN=123 # From https://steamcommunity.com/dev/apikey

GENIURL_TOKEN= # See https://api.sv443.net/geniurl


LAVALINK_HOSTS="ip.to.lavalink.node:somepassword,another.ip.to.another.node:anotherpassword"

# These are both optional, and if not present, spotify can be scraped
SPOTIFY_CLIENT_ID=123123123 # https://developer.spotify.com/dashboard/
SPOTIFY_CLIENT_SECRET=123123123
331 changes: 89 additions & 242 deletions README.md

Large diffs are not rendered by default.

Loading