├── .dockerignore ├── .gitignore ├── Dockerfile ├── Dockerfile_fly ├── LICENSE ├── README.md ├── action.yml ├── drivers ├── __init__.py ├── baidu.py ├── bing_dall_e3.py ├── driver.py └── openai.py ├── environment.py ├── fly.toml ├── notifications ├── __init__.py ├── notifiable.py ├── slack_notifier.py └── telegram_notifier.py ├── requirements.txt ├── services ├── __init__.py ├── gushici.py ├── hydrate_service.py └── weather.py ├── wakeup.py └── webhook.py /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godruoyi/wakeup/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | .vercel -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godruoyi/wakeup/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerfile_fly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godruoyi/wakeup/HEAD/Dockerfile_fly -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godruoyi/wakeup/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godruoyi/wakeup/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godruoyi/wakeup/HEAD/action.yml -------------------------------------------------------------------------------- /drivers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godruoyi/wakeup/HEAD/drivers/__init__.py -------------------------------------------------------------------------------- /drivers/baidu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godruoyi/wakeup/HEAD/drivers/baidu.py -------------------------------------------------------------------------------- /drivers/bing_dall_e3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godruoyi/wakeup/HEAD/drivers/bing_dall_e3.py -------------------------------------------------------------------------------- /drivers/driver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godruoyi/wakeup/HEAD/drivers/driver.py -------------------------------------------------------------------------------- /drivers/openai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godruoyi/wakeup/HEAD/drivers/openai.py -------------------------------------------------------------------------------- /environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godruoyi/wakeup/HEAD/environment.py -------------------------------------------------------------------------------- /fly.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godruoyi/wakeup/HEAD/fly.toml -------------------------------------------------------------------------------- /notifications/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godruoyi/wakeup/HEAD/notifications/__init__.py -------------------------------------------------------------------------------- /notifications/notifiable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godruoyi/wakeup/HEAD/notifications/notifiable.py -------------------------------------------------------------------------------- /notifications/slack_notifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godruoyi/wakeup/HEAD/notifications/slack_notifier.py -------------------------------------------------------------------------------- /notifications/telegram_notifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godruoyi/wakeup/HEAD/notifications/telegram_notifier.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godruoyi/wakeup/HEAD/requirements.txt -------------------------------------------------------------------------------- /services/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godruoyi/wakeup/HEAD/services/__init__.py -------------------------------------------------------------------------------- /services/gushici.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godruoyi/wakeup/HEAD/services/gushici.py -------------------------------------------------------------------------------- /services/hydrate_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godruoyi/wakeup/HEAD/services/hydrate_service.py -------------------------------------------------------------------------------- /services/weather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godruoyi/wakeup/HEAD/services/weather.py -------------------------------------------------------------------------------- /wakeup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godruoyi/wakeup/HEAD/wakeup.py -------------------------------------------------------------------------------- /webhook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godruoyi/wakeup/HEAD/webhook.py --------------------------------------------------------------------------------