This commit is contained in:
xyj 2023-12-12 09:52:38 +08:00
parent 4555a8415c
commit 86497a23ab
1 changed files with 22 additions and 0 deletions

22
install.sh Normal file
View File

@ -0,0 +1,22 @@
#!/bin/bash
set -e
sudo apt update
sudo apt install supervisor
sudo apt install ffmpeg -y
sudo timedatectl set-timezone Asia/Shanghai
git config --global user.name xyj
git config --global user.email 1090822794@qq.com
git config --global credential.helper store
git clone https://gitea.lihaink.cn/xyj/lot_manager.git
cd lot_manager
pip install -r requirements.txt -i https://pypi.tuna.tsinghua.edu.cn/simple
python /home/pi/lot_manager/create_db.py
mkdir /home/pi/mp4
sudo cp conf/example/supervisord.conf /etc/supervisor/supervisord.conf
sudo chmod 777 /etc/supervisor/conf.d
sudo systemctl enable supervisor
sudo systemctl start supervisor