Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/knutkirkhorn/discord-notifier-template
- Owner: knutkirkhorn
- License: mit
- Created: 2023-06-25T09:18:49.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-06-25T09:37:59.000Z (over 1 year ago)
- Last Synced: 2024-04-23T23:05:14.465Z (9 months ago)
- Topics: discord, docker, nodejs, notification, notifier
- Language: JavaScript
- Homepage:
- Size: 65.4 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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).
## 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
```