Skip to content

Latest commit

 

History

History
62 lines (50 loc) · 1.74 KB

README.md

File metadata and controls

62 lines (50 loc) · 1.74 KB

Near - Discord bot of TeamSDS

Lisence
Lisence Last Commit Contributors

Docker

docker-compose build # build the image 
docker-compose up -d # start application
docker-compose down  # shut down application
docker-compose logs  # view application logs

Debian

# Update repositories and update all pakcges
# ---
sudo apt update && sudo apt upgrade 

# Install dependencies
# ---
sudo apt install python3 python3-pip wget htop curl git ffmpeg default-jdk nano -y

# Create required directories
# ---
mkdir ~/nearbot
mkdir ~/nearbot/lavalink

# Setup Lavalink
# ---
cd ~/nearbot/lavalink
wget "https://github.com/lavalink-devs/Lavalink/releases/download/4.0.5/Lavalink.jar"
curl 'https://raw.githubusercontent.com/hirusha-adi/Near/main/lavalink.yml' >> 'application.yml'
java -jar ./Lavalink.jar    # run normally
java -jar ./Lavalink.jar &  # run in background

# Setup Nearbot
# ---
cd ~/nearbot
git clone https://github.com/hirusha-adi/Near
cd Near
mv .env.example .env
nano .env       # fill the environment file
# optionally, create a venv and source it before doing the below step
python3 -m pip install -r requirements.txt
python3 nearbot.py      # run normaly
python3 nearbot.py &    # run in background


# Optionally, you can also keep running it in the background
# ---
bg
disown -h