Skip to content

Latest commit

 

History

History
53 lines (38 loc) · 1.32 KB

INSTALL.md

File metadata and controls

53 lines (38 loc) · 1.32 KB

Spigot Plugin Manager (v1) ⛏️ - Installation

Need some help? ℹ️

Please contact me on Discord if you run into any issues during installation.

Automatic Installation 📥

Download and run the bash script provided in this repository to install files.

sudo curl -Lo auto-install.sh https://raw.githubusercontent.com/Jexactyl/plugin-manager-addon/main/auto-install.sh
sudo chmod u+x auto-install.sh
sudo ./auto-install.sh

Manual Installation 📥

Download the archive from GitHub and extract it into your /var/www/pterodactyl install.

cd /tmp
git clone https://github.com/jexactyl/plugin-manager-addon

cd plugin-manager-addon
cp -R * /var/www/pterodactyl/

Then, you'll need to install NodeJS and Yarn in order to compile the Panel's frontend.

# Ubuntu/Debian
curl -sL https://deb.nodesource.com/setup_16.x | sudo -E bash -
apt install -y nodejs

# CentOS
curl -sL https://rpm.nodesource.com/setup_16.x | sudo -E bash -
sudo yum install -y nodejs yarn # CentOS 7
sudo dnf install -y nodejs yarn # CentOS 8
npm i -g yarn # Install Yarn

cd /var/www/pterodactyl
yarn # Installs panel build dependencies

Finally, build the Panel in production mode to add the UI.

cd /var/www/pterodactyl
yarn build:production # Build panel