-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
82 additions
and
66 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,13 @@ | ||
# ninbot [![Add to Discord](https://img.shields.io/badge/Add%20to-Discord-7289da.svg)](https://discordapp.com/api/oauth2/authorize?client_id=594276600892358666&permissions=0&scope=bot) | ||
|
||
## Features | ||
**ninbot** is a Discord bot created specifically for the Nine Inch Nails Discord server. | ||
|
||
- Retrieves the last week's worth of songs in `#non-nin-music` and then updates a Spotify playlist with the results. | ||
## 🎵 NINcord Weekly | ||
|
||
ninbot retrieves the last week's worth of songs in `#non-nin-music` and then updates a [Spotify playlist](https://open.spotify.com/playlist/1pMms99VVgmLZhkr2MN010?si=0YvWAK2aR-yik6-OcV_g7g) with the results. | ||
|
||
Your song will be added to the playlist if it is in one of the following formats: | ||
|
||
- Spotify track (https://open.spotify.com/track/...) | ||
|
||
The playlist updates every Monday at 00:00 UTC. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import * as Sentry from '@sentry/node'; | ||
|
||
require('dotenv').config(); | ||
|
||
if (process.env.SENTRY_DSN) { | ||
Sentry.init({ dsn: process.env.SENTRY_DSN }); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters