Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/knutkirkhorn/discord-notifier-template

Template for creating a Discord notifier
https://github.com/knutkirkhorn/discord-notifier-template

discord docker nodejs notification notifier

Last synced: about 1 month ago
JSON representation

Template for creating a Discord notifier

Awesome Lists containing this project

README

        

# discord-notifier-template

> Template for creating a Discord notifier

It notifies to a Discord channel using [Discord Webhooks](https://discord.com/developers/docs/resources/webhook).


Template notification example

## Usage

### Within a Docker container

```sh
# Build container from source
docker build -t discord-notifier .

# Run container
docker run -d -e DISCORD_WEBHOOK_URL= -e discord-notifier
```

### Outside of a Docker container

```sh
# Install
npm install

# Run
npm start
```