update
This commit is contained in:
parent
4555a8415c
commit
86497a23ab
|
@ -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
|
Loading…
Reference in New Issue