mirror of
https://github.com/Evil0ctal/Douyin_TikTok_Download_API.git
synced 2025-04-19 03:29:42 +08:00
12 lines
282 B
Bash
12 lines
282 B
Bash
#!/bin/sh
|
|
|
|
# Activating the virtual environment
|
|
# shellcheck disable=SC2039
|
|
source /www/wwwroot/Douyin_TikTok_Download_API/venv/bin/activate
|
|
|
|
# Starting the Python application
|
|
python start.py
|
|
|
|
# Deactivating the virtual environment (optional, since the script is ending)
|
|
deactivate
|