lot_manager/install.sh

22 lines
644 B
Bash

#!/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