mirror of
https://github.com/migatu/conjurer.git
synced 2026-07-14 21:38:38 +00:00
d914711559
Intermediate commits (oldest → newest): - New files for flask services - Service - Minor fix 2 - Waitress - Linux conf files - Service - Bugfixing - Waitress - Install options - Work on deployment - Bugfixes - Work on deployment - name change and othre bugfixes - Installer - Test
12 lines
395 B
Bash
12 lines
395 B
Bash
#!/bin/bash
|
|
python3 -m venv /home/pi/Conjurer-service/conjurer/file_webservice
|
|
source ./bin/activate
|
|
./bin/python3 -m pip install --upgrade pip
|
|
./bin/python3 -m pip install -r requirements_musician.txt
|
|
deactivate
|
|
|
|
sudo cp ./conjurer_musician.service /etc/systemd/system/
|
|
sudo systemctl daemon-reload
|
|
sudo systemctl start conjurer_musician.service
|
|
sudo systemctl enable conjurer_musician.service
|