This repository has been archived on 2022-10-07. You can view files and clone it, but cannot push or open issues or pull requests.
|
#! /usr/bin/env bash
|
|
|
|
set -e # exit on first error
|
|
|
|
sudo apt-get update
|
|
sudo apt-get -y install python3-pip
|
|
|
|
pip3 install discord.py python-dotenv requests
|
|
|
|
# add cron entries to user crontab
|
|
crontab -u user /home/user/skynet-webportal/setup-scripts/support/crontab
|