jet-search/deploy/setup.sh

14 lines
349 B
Bash
Raw Normal View History

2024-11-11 20:45:16 +01:00
#!/bin/bash
# This file is part of VM-Experiments.
# Licensed under the AGPL-3.0-or-later. See LICENSE for details.
cd /root/jet-search/deploy/
mv jet-search /etc/nginx/sites-enabled/
mv jet-search.service /etc/systemd/system/
systemctl enable jet-search.service
cd ..
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt