{"id":25820435,"url":"https://github.com/ultradns/ultradns-push-notifier","last_synced_at":"2026-04-11T19:04:07.279Z","repository":{"id":273608793,"uuid":"920283843","full_name":"ultradns/ultradns-push-notifier","owner":"ultradns","description":"Interface for setting up notifications to Teams, Slack and other platforms","archived":false,"fork":false,"pushed_at":"2025-01-22T13:30:47.000Z","size":5148,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-06-13T17:48:06.426Z","etag":null,"topics":["digicert","dns","docker","flask-api","reactjs","sysadmin-tool","ultradns","vercara"],"latest_commit_sha":null,"homepage":"https://portal.ultradns.com","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ultradns.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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,"zenodo":null}},"created_at":"2025-01-21T21:58:48.000Z","updated_at":"2025-01-22T13:30:51.000Z","dependencies_parsed_at":"2025-01-21T23:24:01.591Z","dependency_job_id":"5116c692-f270-40b9-810b-96adcdd83c33","html_url":"https://github.com/ultradns/ultradns-push-notifier","commit_stats":null,"previous_names":["ultradns/ultradns-push-notifier"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/ultradns/ultradns-push-notifier","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ultradns%2Fultradns-push-notifier","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ultradns%2Fultradns-push-notifier/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ultradns%2Fultradns-push-notifier/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ultradns%2Fultradns-push-notifier/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ultradns","download_url":"https://codeload.github.com/ultradns/ultradns-push-notifier/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ultradns%2Fultradns-push-notifier/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":273993049,"owners_count":25203793,"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","status":"online","status_checked_at":"2025-09-07T02:00:09.463Z","response_time":67,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["digicert","dns","docker","flask-api","reactjs","sysadmin-tool","ultradns","vercara"],"created_at":"2025-02-28T09:54:25.602Z","updated_at":"2025-12-30T21:29:14.977Z","avatar_url":"https://github.com/ultradns.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ultradns-push-notifier\n\nThis is a web-based application designed to configure push notification endpoints for UltraDNS. The app uses a **Flask backend** for managing API requests and a **React frontend** to provide a clean and user-friendly interface. It supports setting up notification platforms such as Microsoft Teams and Slack and will include Discord plus others in future updates.\n\n## Features\n\n- **Admin Password Management**: Set and log in with an admin password for secure access.\n- **Multi-Step Setup Workflow**:\n  - Select a notification platform (e.g., Microsoft Teams).\n  - Configure the webhook for the platform.\n  - Wait for UltraDNS test telemetry to verify the endpoint.\n- **Dashboard**: View configured webhooks, including their type, status, token, and URL.\n\n## Project Structure\n\n```plaintext\nroot/\n├── backend/             # Flask backend API for managing data and telemetry\n│   ├── app.py           # Main Flask app\n│   ├── requirements.txt # Backend dependencies\n│   └── ...              # Additional backend files\n├── frontend/            # React frontend for the user interface\n│   ├── src/             # React source code\n│   │   ├── App.js       # Main React component\n│   │   └── ...          # Additional React components\n│   ├── public/          # Static assets (e.g., logos, icons)\n│   └── package.json     # Frontend dependencies\n├── docker-compose.yml   # Docker Compose file for container orchestration\n└── README.md            # Project documentation\n```\n\n## Installation and Setup\n\n### Prerequisites\n\n- **Docker** (https://www.docker.com/)\n- **Docker Compose** (included with Docker Desktop or available separately)\n\n### Environment\n\n* `WEB_HOST` - The DNS hostname for your notifier. The application needs to be encrypted, so we use Traefik as a reverse proxy. It will automatically obtain a certificate for your host.\n* `ACME_EMAIL` - The email used in the CSR created by Traefik.\n* `FILTER_IPS` - When `FILTER_IPS` is enabled, the application will attempt to assert that only requests from UltraDNS are allowed to communicate with the webhooks by checking the `X-Forwarded-For` header and client IP.\n* `DISABLE_GUI` - Setting this to `true` will disable access to the web interface. Notifications will still be pushed through the backend.\n\n### Setup Instructions\n\n1. Make a directory for the container and its data.\n   ```bash\n   mkdir -p ultradns-push-notifier/data/certificates\n   ```\n\n2. Download `docker-compose.yml` or create a file with the same name and paste its contents.\n3. Create a `.env` file and add add the values from `example.env`\n   - If you'd rather use your own reverse proxy, remove the Traefik service and labels from the compose manifest.\n4. Pull and start the containers.\n   ```bash\n   docker compose up -d\n   ```\n\n### Dev Setup Instructions\n\n1. Clone the repository:\n2. Start the application using Docker Compose:\n   ```bash\n   docker compose -f docker-compose-dev.yml up --build -d\n   ```\n\n   This will:\n   - Build the **udns-push-notifier-backend** and **udns-push-notifier-frontend** containers from their respective `backend` and `frontend` directories.\n   - Start the containers as daemons.\n   - Expose the backend on `http://localhost:8097` and the frontend on `http://localhost:3000`.\n\n3. Access the application:\n   - Open `http://localhost:3000` in your browser.\n\n**Note:** UltraDNS requires `HTTPS`, so this application needs to be behind a reverse proxy if you want it to receive notifications. Non-development Compose file includes Traefik. In dev, this needs to be manually configured in your proxy of choice. I use Nginx Proxy Manager on my network, but you could just copy the Traefik config.\n\n## Usage\n\n1. Open the application in your browser (default: `http://localhost:3000`).\n2. Follow the setup steps:\n   - Log in or set an admin password (if not already configured).\n   - Select a notification platform.\n   - Enter the webhook URL.\n   - Wait for UltraDNS to send test telemetry to verify the endpoint.\n3. View and manage configured webhooks in the dashboard.\n\nSee [frontend/README.md](./frontend/README.md) for a visual demonstration.\n\n## Contributing\n\nContributions are welcome! To contribute:\n\n1. Fork the repository.\n2. Create a new branch for your feature or bugfix:\n   ```bash\n   git checkout -b feature-name\n   ```\n\n3. Commit your changes:\n   ```bash\n   git commit -m \"Description of changes\"\n   ```\n\n4. Push to your fork:\n   ```bash\n   git push origin feature-name\n   ```\n\n5. Open a pull request.\n\n## License\n\nThis project is licensed under the [MIT License](LICENSE).\n\n---\n\n## Acknowledgments\n\n- Icons provided by [Icons8](https://icons8.com).\n- Built using **Flask**, **React**, and **Docker**.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fultradns%2Fultradns-push-notifier","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fultradns%2Fultradns-push-notifier","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fultradns%2Fultradns-push-notifier/lists"}