From 3d554a2358fcde404fe2ca8ab0c3656cab2fa83a Mon Sep 17 00:00:00 2001 From: Evil0ctal Date: Mon, 26 Dec 2022 18:25:27 -0800 Subject: [PATCH] Delete install.sh --- install.sh | 93 ------------------------------------------------------ 1 file changed, 93 deletions(-) delete mode 100644 install.sh diff --git a/install.sh b/install.sh deleted file mode 100644 index aad77f8..0000000 --- a/install.sh +++ /dev/null @@ -1,93 +0,0 @@ -#!/bin/bash - -echo 'installing Git...' - -apt-get install git - -echo 'installing Python3...' - -apt install python3 - -echo 'installing PIP3...' - -apt install python3-pip - -echo 'Creating path: /www/wwwroot' - -mkdir -p /www/wwwroot - -cd /www/wwwroot || exit - -echo 'Cloning Douyin_TikTok_Download_API.git from Github!' - -git clone https://github.com/Evil0ctal/Douyin_TikTok_Download_API.git - -cd Douyin_TikTok_Download_API/ || exit - -pip install -r requirements.txt - -echo 'Please edit config.ini, all input must be numbers!' - -python3 config.py - -cp /www/wwwroot/Douyin_TikTok_Download_API/daemon/* /etc/systemd/system/ - -read -r -p "Run API or Web? [api/web/all/quit] " input -case $input in - [aA][pP][iI]|[aA]) - read -r -p "Do you want to start the api service when system boot? [y/n] " input - case $input in - [yY]) - systemctl enable web_api.service - echo "API service will start when system boot!" - ;; - [nN]| *) - echo "You can start the service by running: systemctl start web_api.service" - ;; - esac - echo "Starting API..." - systemctl start web_api.service - echo "API is running! You can visit http://your_ip:port" - echo "You can stop the api service by running: systemctl stop web_api.service" - ;; - [wW][eE][bB]|[wW]) - read -r -p "Do you want to start the app service when system boot? [y/n] " input - case $input in - [yY]) - systemctl enable web_app.service - echo "Web service will start when system boot!" - ;; - [nN]| *) - echo "You can start the service by running: systemctl start web_app.service" - ;; - esac - echo "Staining APP..." - systemctl start web_app.service - echo "API is running! You can visit http://your_ip:port" - echo "You can stop the api service by running: systemctl stop web_app.service" - ;; - [aA][lL][lL]) - read -r -p "Do you want to start the app and api service when system boot? [y/n] " input - case $input in - [yY]) - systemctl enable web_app.service - systemctl enable web_api.service - ;; - [nN]| *) - echo "You can start them on boot by these commands:" - echo "systemctl enable (web_app.service||web_api.service)" - ;; - esac - echo "Starting WEB and API Services..." - systemctl start web_app.service - systemctl start web_api.service - echo "API and APP service are running!" - echo "You can stop the api service by running following command: " - echo "systemctl stop (web_app.service||web_api.service)" - ;; - *) - echo "Exiting without running anything..." - exit 1 - ;; -esac -