Skip to content
This repository has been archived by the owner on Nov 19, 2019. It is now read-only.

Commit

Permalink
Package.json update, README update
Browse files Browse the repository at this point in the history
  • Loading branch information
kyogoi committed Oct 5, 2019
1 parent 32cef7e commit be29ef3
Show file tree
Hide file tree
Showing 5 changed files with 849 additions and 12 deletions.
6 changes: 4 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,8 @@ typings/
# next.js build output
.next

# bot configs
# bot config
config.json
channels.json

# channels database
db/channels.db
11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,11 @@
# mc-vc-bot
A Discord bot for the [Microsoft Community](https://discord.gg/microsoft) server that purges text channels after voice channel inactivity.
A Discord bot for the [Microsoft Community](https://discord.gg/microsoft) server that purges text channels after voice channel inactivity.

Requires a SQLite database in (./db/channels.db)
Schema:

```CREATE TABLE channels (
voice_id STRING PRIMARY KEY,
text_id STRING NOT NULL,
set_to_purge INTEGER NOT NULL
);```
6 changes: 0 additions & 6 deletions channels.json.example

This file was deleted.

Loading

0 comments on commit be29ef3

Please sign in to comment.