vpnmanager/setup.sh

11 lines
472 B
Bash

#!/bin/bash
sudo apt install -y python3-pip
sudo pip3 install -U django uwsgi django-two-factor-auth django-bootstrap-form
./manage.py collectstatic
./manage.py migrate
sudo cp vpnmanager.service /etc/systemd/system/
sudo systemctl daemon-reload
sudo systemctl enable vpnmanager
sudo systemctl start vpnmanager
echo "This should be working so far. Now point your webserver to uwsgi.sock using its WSGI options. Be sure to include the static files at static/static_root/"