Installation Support
I was hoping to get an idea of how to start about installing this...
On step 4 it says to place the blueprint files inside of your pterodactyl folder. Does that mean like physically go onto the server and drag and drop it into that folder? Or is there a command I can run instead to install blueprint?
Navigate to your Pterodactyl folder. (most likely /var/www/pterodactyl)
2. Install NodeJS, NPM and Yarn using the following commands. This assumes you are running Pterodactyl on Ubuntu or Debian-based systems.
sudo apt-get install -y ca-certificates curl gnupg
sudo mkdir -p /etc/apt/keyrings
curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | sudo gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg
echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_20.x nodistro main" | tee /etc/apt/sources.list.d/nodesource.list
apt-get update
apt-get install -y nodejs
npm i -g yarn
yarn
3. Download the latest release of Blueprint and extract it (stable build) or pull the files via git (bleeding-edge build).
4. If you haven't already, place the Blueprint files inside of your Pterodactyl folder. (common location is /var/www/pterodactyl)
5. Run the Blueprint installation script. This runs the commands required for Blueprint to function correctly. If your Pterodactyl folder is not /var/www/pterodactyl you may need to put _FOLDER="/path/to/pterodactyl" in front of bash blueprint.sh.
chmod +x blueprint.sh
bash blueprint.sh
6. After waiting for the installation script to finish, open up your Pterodactyl admin panel and click on the puzzle icon in the top right of the website to verify your installation.Navigate to your Pterodactyl folder. (most likely /var/www/pterodactyl)
2. Install NodeJS, NPM and Yarn using the following commands. This assumes you are running Pterodactyl on Ubuntu or Debian-based systems.
sudo apt-get install -y ca-certificates curl gnupg
sudo mkdir -p /etc/apt/keyrings
curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | sudo gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg
echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_20.x nodistro main" | tee /etc/apt/sources.list.d/nodesource.list
apt-get update
apt-get install -y nodejs
npm i -g yarn
yarn
3. Download the latest release of Blueprint and extract it (stable build) or pull the files via git (bleeding-edge build).
4. If you haven't already, place the Blueprint files inside of your Pterodactyl folder. (common location is /var/www/pterodactyl)
5. Run the Blueprint installation script. This runs the commands required for Blueprint to function correctly. If your Pterodactyl folder is not /var/www/pterodactyl you may need to put _FOLDER="/path/to/pterodactyl" in front of bash blueprint.sh.
chmod +x blueprint.sh
bash blueprint.sh
6. After waiting for the installation script to finish, open up your Pterodactyl admin panel and click on the puzzle icon in the top right of the website to verify your installation.On step 4 it says to place the blueprint files inside of your pterodactyl folder. Does that mean like physically go onto the server and drag and drop it into that folder? Or is there a command I can run instead to install blueprint?
