Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/2boom-ua/webntfy
A simple server for sending and receiving messages. It allows users to post new messages, view existing messages and delete messages as needed. This server can work in a local network without the need for an Internet connection and does not require registration.
https://github.com/2boom-ua/webntfy
flask javascript notification python3 requests self-hosted selfhosted selfhosting sqlite3 webntfy
Last synced: about 1 month ago
JSON representation
A simple server for sending and receiving messages. It allows users to post new messages, view existing messages and delete messages as needed. This server can work in a local network without the need for an Internet connection and does not require registration.
- Host: GitHub
- URL: https://github.com/2boom-ua/webntfy
- Owner: 2boom-ua
- Created: 2024-12-10T22:33:21.000Z (about 1 month ago)
- Default Branch: main
- Last Pushed: 2024-12-11T18:38:38.000Z (about 1 month ago)
- Last Synced: 2024-12-11T19:43:03.462Z (about 1 month ago)
- Topics: flask, javascript, notification, python3, requests, self-hosted, selfhosted, selfhosting, sqlite3, webntfy
- Language: Python
- Homepage:
- Size: 416 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## WebNtfy
A simple server for sending and receiving messages. It allows users to post new messages, view existing messages and delete messages as needed. This server can work in a local network without the need for an Internet connection and does not require registration.
### Requirements
- Python 3.X or higher
- Dependencies: Flask, Requests---
### Installation#### Clone the Repository
```bash
git clone https://github.com/2boom-ua/webntfy.git
cd webntfy
```
---
### Running as a Linux Service#### Install Required Python Packages
```bash
pip install -r requirements.txt
```
#### Create a systemd Service File```bash
sudo nano /etc/systemd/system/webntfy.service
```Add the following content:
```ini
[Unit]
Description=WebNtfy
After=multi-user.target[Service]
Type=simple
Restart=always
ExecStart=/usr/bin/python3 /opt/webntfy/webntfy.py[Install]
WantedBy=multi-user.target
```#### Start and Enable the Service
```bash
sudo systemctl daemon-reload
sudo systemctl enable webntfy.service
sudo systemctl start webntfy.service
```
---### Start
**https://your_domain_name or http://server_ip:5511**
---
### [Usage examples for curl, wget, Python, PHP, JavaScript, JSON](usage.md)
---
### License
This project is licensed under the [MIT License](https://opensource.org/licenses/MIT).
---
### Author
- **2boom** - [GitHub](https://github.com/2boom-ua)