Skip to content
/ site Public

The easiest way to build and send Discord messages using webhooks (deprecated: see discohook/discohook)

License

Notifications You must be signed in to change notification settings

discohook/site

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Mar 10, 2025
57ac404 · Mar 10, 2025
Mar 10, 2025
Nov 29, 2020
Feb 22, 2021
Mar 16, 2024
Feb 19, 2021
Mar 10, 2025
Aug 27, 2022
Nov 29, 2020
Nov 29, 2020
Nov 29, 2020
Dec 16, 2020
Jul 7, 2023
Nov 29, 2020
Aug 3, 2022
Feb 26, 2021
Feb 14, 2023
Dec 7, 2020
Aug 17, 2020
Mar 22, 2020
Feb 22, 2021
Apr 9, 2021
Jul 1, 2021
May 7, 2020
Oct 18, 2023
May 18, 2020
May 18, 2020
Feb 26, 2021
Aug 3, 2022
Jun 22, 2020
Aug 3, 2022

Repository files navigation

Discohook

ci

An easy-to-use tool for building and sending Discord messages and embeds using webhooks.

Live instance is available at https://discohook.app/.

Running via Container

This application is setup to publish a container image to ghcr.io/discohook/site:latest. This image can be run with podman, docker, or another service compliant with the OCI. The image can be run from the command line with the following command or in the desktop guis (podman desktop guide)

# Replace 'podman' with 'docker' if using that, the command is equivalent
# Add --rm if you want the container to be removed automatically after being stopped
# If necesary, change the second 3000 to change which port on the local computer the app is bound to
podman run -d -p 3000:3000 ghcr.io/discohook/site:latest

Local build and run

Requires Node.js 16 and the Yarn package manager installed

# Install dependencies
yarn install

# Run a development server
yarn run dev

# Run a production server
yarn run build
yarn run start