A simple web app to manage ntfy.sh topics. It allows you to configure topics so that you can view by topic or by tag. Tagging allows you to group related topics together to make it easier to get a quick overview of what's happening for a particular project or area of interest. You can have as many tags as you want for a topic so you can group them pretty much however you would like.
- View topics by tag
- View topics by topic
- Message counter for topics and tags
- Mobile friendly view (probably not perfect but it works pretty decently)
- Adjusts to dark or light mode based on your system settings
- Generates colors for messages based on the topic name
- Message acknowledgements (mark as read)
- Ability to configure a webhook for a topic or tag with potential filtering by message contents
- Ability to configure everything from the UI (currently requires a config file)
- Maybe some other shit but I work on this in my free time so bear with me
- Ability to configure dark or light mode in configuration
Using Docker is the easiet way to run the app, but you can also build it locally.
{
"topics": [
{
"name": "test",
"description": "test description",
"tags": ["tag1"]
},
{
"name": "test2",
"description": "test description",
"tags": ["tag1", "tag2"]
},
{
"name": "test3"
}
],
,
"ntfy": {
"url": "https://ntfy.sh",
"apiKey": "your-api-key"
}
}
-
Create a
config.json
file and drop it in the desired directory. See the example above. -
Run
docker run -p 3000:3000 -v /path/to/config:/app/config ghcr.io/mzrimsek/ntfy-workbench:latest
-
Access the app at
http://localhost:3000
-
Create a
config.json
file and drop it in the desired directory. See the example above. -
Download the
docker-compose.yml
file from the repository. -
Create
.env
file in the root directory with the following content:
CONFIG_DIR=/path/to/folder/with/config
- Run the app from the root directory
docker-compose up -d
- Access the app at
http://localhost:3000
-
Pick a directory for your config location
-
Create a
config.json
file and drop it in the desired directory. See the example above. -
Build the image
docker build -t ntfy-workbench .
- Run the image
docker run -p 3000:3000 -v /path/to/config:/app/config ntfy-workbench
- Access the app at
http://localhost:3000
- Install dependencies
npm install
-
Create a
config.json
file and drop it in the config folder. See the example above. -
Start the app
npm run dev