{"id":23149966,"url":"https://github.com/2boom-ua/webntfy","last_synced_at":"2026-04-10T01:04:56.456Z","repository":{"id":267676704,"uuid":"901564959","full_name":"2boom-ua/webntfy","owner":"2boom-ua","description":"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.","archived":false,"fork":false,"pushed_at":"2025-03-31T14:18:06.000Z","size":483,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-31T15:51:48.895Z","etag":null,"topics":["docker","docker-compose","dockerfile","flask","javascript","notification","python3","requests","self-hosted","selfhosted","selfhosting","sqlite3","webntfy"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/2boom-ua.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-12-10T22:33:21.000Z","updated_at":"2025-03-31T14:18:09.000Z","dependencies_parsed_at":"2024-12-11T19:43:09.111Z","dependency_job_id":"5258f423-65e5-411c-a98e-1df70f3822bd","html_url":"https://github.com/2boom-ua/webntfy","commit_stats":null,"previous_names":["2boom-ua/webntfy"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/2boom-ua%2Fwebntfy","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/2boom-ua%2Fwebntfy/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/2boom-ua%2Fwebntfy/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/2boom-ua%2Fwebntfy/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/2boom-ua","download_url":"https://codeload.github.com/2boom-ua/webntfy/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247198411,"owners_count":20900078,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["docker","docker-compose","dockerfile","flask","javascript","notification","python3","requests","self-hosted","selfhosted","selfhosting","sqlite3","webntfy"],"created_at":"2024-12-17T18:15:51.831Z","updated_at":"2025-12-30T23:08:10.775Z","avatar_url":"https://github.com/2boom-ua.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e  \n    \u003cimg src=\"https://github.com/2boom-ua/webntfy/blob/main/static/mstile-144x144.png?raw=true\" alt=\"\" width=\"124\" height=\"124\"\u003e\n\u003c/div\u003e\n\n## WebNtfy\n\nA 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.\n\n### Requirements\n\n- Python 3.X or higher\n- Dependencies: Gunicorn, Flask, Requests\n\n---\n#### Docker Installation\n\n### Dowload messages.db\n```bash\ncurl -L -o ./messages.db  https://raw.githubusercontent.com/2boom-ua/webntfy/main/messages.db\n```\n---\n```bash\n  docker build -t webntfy .\n```\nor\n```bash\n  docker pull ghcr.io/2boom-ua/webntfy:latest\n```\n\n### docker-cli\n```bash\ndocker run -v ./messages.db:/webntfy/messages.db --name webntfy -p 5511:5511 -e TZ=UTC ghcr.io/2boom-ua/webntfy:latest \n```\n### docker-compose\n```\nservices:\n  webntfy:\n    container_name: webntfy\n    image: ghcr.io/2boom-ua/webntfy:latest\n    environment:\n      - TZ=Etc/UTC\n    ports:\n      - 5511:5511\n    volumes:\n      - ./messages.db:/webntfy/messages.db\n    restart: unless-stopped\n```\n\n```bash\ndocker-compose up -d\n```\n\n---\n### Running as a Linux Service\n\n#### Clone the Repository\n```bash\ngit clone https://github.com/2boom-ua/webntfy.git\ncd webntfy\n```\n#### Install Required Python Packages\n\n```bash\npip install -r requirements.txt\n```\n#### Create a systemd Service File\n\n```bash\nnano /etc/systemd/system/webntfy.service\n```\n\nAdd the following content:\n\n```ini\n[Unit]\nDescription=WebNtfy\nAfter=multi-user.target\n\n[Service]\nType=simple\nRestart=always\nWorkingDirectory=/opt/webntfy\nExecStart=gunicorn -w 4 -b 0.0.0.0:5511 webntfy:app\n\n[Install]\nWantedBy=multi-user.target\n```\n\n#### Start and Enable the Service\n\n```bash\nsystemctl daemon-reload\nsystemctl enable webntfy.service\nsystemctl start webntfy.service\n```\n---\n\n### Start\n\n**https://your_domain_name or http://server_ip:5511**\n\n---\n\n### [Usage examples for curl, wget, Python, PHP, JavaScript, JSON](usage.md)\n\n---\n\n### License\n\nThis project is licensed under the [MIT License](https://opensource.org/licenses/MIT).\n\n---\n\n### Author\n\n- **2boom** - [GitHub](https://github.com/2boom-ua)\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F2boom-ua%2Fwebntfy","html_url":"https://awesome.ecosyste.ms/projects/github.com%2F2boom-ua%2Fwebntfy","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F2boom-ua%2Fwebntfy/lists"}