├── .gitignore ├── README.md ├── app.py ├── config.py ├── deploy.sh ├── manage.sh ├── requirements.txt └── services ├── __pycache__ ├── audio_service.cpython-311.pyc ├── file_service.cpython-311.pyc └── video_service.cpython-311.pyc ├── audio_service.py ├── file_service.py ├── task_service.py └── video_service.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiahao6635/HeyGemWeb/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiahao6635/HeyGemWeb/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiahao6635/HeyGemWeb/HEAD/app.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiahao6635/HeyGemWeb/HEAD/config.py -------------------------------------------------------------------------------- /deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiahao6635/HeyGemWeb/HEAD/deploy.sh -------------------------------------------------------------------------------- /manage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiahao6635/HeyGemWeb/HEAD/manage.sh -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiahao6635/HeyGemWeb/HEAD/requirements.txt -------------------------------------------------------------------------------- /services/__pycache__/audio_service.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiahao6635/HeyGemWeb/HEAD/services/__pycache__/audio_service.cpython-311.pyc -------------------------------------------------------------------------------- /services/__pycache__/file_service.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiahao6635/HeyGemWeb/HEAD/services/__pycache__/file_service.cpython-311.pyc -------------------------------------------------------------------------------- /services/__pycache__/video_service.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiahao6635/HeyGemWeb/HEAD/services/__pycache__/video_service.cpython-311.pyc -------------------------------------------------------------------------------- /services/audio_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiahao6635/HeyGemWeb/HEAD/services/audio_service.py -------------------------------------------------------------------------------- /services/file_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiahao6635/HeyGemWeb/HEAD/services/file_service.py -------------------------------------------------------------------------------- /services/task_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiahao6635/HeyGemWeb/HEAD/services/task_service.py -------------------------------------------------------------------------------- /services/video_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiahao6635/HeyGemWeb/HEAD/services/video_service.py --------------------------------------------------------------------------------