├── .gitignore ├── Dockerfile ├── README.md ├── app.py ├── controller ├── __init__.py ├── app_dingtalk.py ├── app_mail.py ├── app_sms.py ├── app_wechat.py ├── itsm_event_reminder.py ├── itsm_fault.py └── itsm_upload_file.py ├── database.py ├── docker-compose.yml ├── images ├── att.jpg ├── att_html.jpg ├── dingtalk.png ├── phone_sms.png ├── sms.png └── wechat.png ├── models.py ├── requirements.txt ├── settings.py ├── static ├── __init__.py └── files │ └── __init__.py ├── supervisord.conf ├── templates ├── __init__.py ├── event_reminder.html └── fault_info.html ├── test.py └── utils ├── const.py ├── send_dingtalk.py ├── send_mail.py ├── send_sms.py └── timed_task..py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongfei/AppTools/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongfei/AppTools/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongfei/AppTools/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongfei/AppTools/HEAD/app.py -------------------------------------------------------------------------------- /controller/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongfei/AppTools/HEAD/controller/__init__.py -------------------------------------------------------------------------------- /controller/app_dingtalk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongfei/AppTools/HEAD/controller/app_dingtalk.py -------------------------------------------------------------------------------- /controller/app_mail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongfei/AppTools/HEAD/controller/app_mail.py -------------------------------------------------------------------------------- /controller/app_sms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongfei/AppTools/HEAD/controller/app_sms.py -------------------------------------------------------------------------------- /controller/app_wechat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongfei/AppTools/HEAD/controller/app_wechat.py -------------------------------------------------------------------------------- /controller/itsm_event_reminder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongfei/AppTools/HEAD/controller/itsm_event_reminder.py -------------------------------------------------------------------------------- /controller/itsm_fault.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongfei/AppTools/HEAD/controller/itsm_fault.py -------------------------------------------------------------------------------- /controller/itsm_upload_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongfei/AppTools/HEAD/controller/itsm_upload_file.py -------------------------------------------------------------------------------- /database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongfei/AppTools/HEAD/database.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongfei/AppTools/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /images/att.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongfei/AppTools/HEAD/images/att.jpg -------------------------------------------------------------------------------- /images/att_html.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongfei/AppTools/HEAD/images/att_html.jpg -------------------------------------------------------------------------------- /images/dingtalk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongfei/AppTools/HEAD/images/dingtalk.png -------------------------------------------------------------------------------- /images/phone_sms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongfei/AppTools/HEAD/images/phone_sms.png -------------------------------------------------------------------------------- /images/sms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongfei/AppTools/HEAD/images/sms.png -------------------------------------------------------------------------------- /images/wechat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongfei/AppTools/HEAD/images/wechat.png -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongfei/AppTools/HEAD/models.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongfei/AppTools/HEAD/requirements.txt -------------------------------------------------------------------------------- /settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongfei/AppTools/HEAD/settings.py -------------------------------------------------------------------------------- /static/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongfei/AppTools/HEAD/static/__init__.py -------------------------------------------------------------------------------- /static/files/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongfei/AppTools/HEAD/static/files/__init__.py -------------------------------------------------------------------------------- /supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongfei/AppTools/HEAD/supervisord.conf -------------------------------------------------------------------------------- /templates/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongfei/AppTools/HEAD/templates/__init__.py -------------------------------------------------------------------------------- /templates/event_reminder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongfei/AppTools/HEAD/templates/event_reminder.html -------------------------------------------------------------------------------- /templates/fault_info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongfei/AppTools/HEAD/templates/fault_info.html -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongfei/AppTools/HEAD/test.py -------------------------------------------------------------------------------- /utils/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongfei/AppTools/HEAD/utils/const.py -------------------------------------------------------------------------------- /utils/send_dingtalk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongfei/AppTools/HEAD/utils/send_dingtalk.py -------------------------------------------------------------------------------- /utils/send_mail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongfei/AppTools/HEAD/utils/send_mail.py -------------------------------------------------------------------------------- /utils/send_sms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongfei/AppTools/HEAD/utils/send_sms.py -------------------------------------------------------------------------------- /utils/timed_task..py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongfei/AppTools/HEAD/utils/timed_task..py --------------------------------------------------------------------------------