├── Dockerfile ├── README.md ├── app.py ├── docker-compose.dev.yml ├── docker-compose.prod.yml ├── notice.txt ├── requirements.txt └── templates └── index.html /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollowpnt92/notice-screen/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollowpnt92/notice-screen/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollowpnt92/notice-screen/HEAD/app.py -------------------------------------------------------------------------------- /docker-compose.dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollowpnt92/notice-screen/HEAD/docker-compose.dev.yml -------------------------------------------------------------------------------- /docker-compose.prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollowpnt92/notice-screen/HEAD/docker-compose.prod.yml -------------------------------------------------------------------------------- /notice.txt: -------------------------------------------------------------------------------- 1 | Acknowledge any alerts to be redirected -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollowpnt92/notice-screen/HEAD/requirements.txt -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollowpnt92/notice-screen/HEAD/templates/index.html --------------------------------------------------------------------------------