this doesnt work, and i probably wont fix it, so just either wait for blueprint to support pelican, or wait for pelican to release it's plugin system
Find a file
2023-11-01 14:51:42 +01:00
.github feat(funding): No longer accept Ko-Fi donations. 2023-10-27 12:38:54 +02:00
app feat(core): Sync telemetry id and developer mode status through artisan command. 2023-11-01 14:51:42 +01:00
blueprint feat(core): Sync telemetry id and developer mode status through artisan command. 2023-11-01 14:51:42 +01:00
database/migrations feat(migrations): Add comment to Blueprint database migration 2023-10-29 20:33:48 +01:00
public feat(core): Add exposed extension exporting 2023-10-31 11:28:47 +01:00
resources Improve extension website buttons and add transition animation to all buttons. 2023-09-30 14:31:34 +02:00
routes Update admin router text 2023-05-17 09:36:55 +02:00
storage/app/public feat(placeholder-file): Update contents of placeholder file in storage folder. 2023-10-29 20:36:27 +01:00
tools fix(core): Stop wiping the tools/tmp directory when upgrading. 2023-10-13 20:18:20 +02:00
.gitignore Add .DS_Store to .gitignore 2023-07-01 17:56:19 +02:00
blueprint.sh feat(core): Sync telemetry id and developer mode status through artisan command. 2023-11-01 14:51:42 +01:00
LICENSE *well nevermind* 2023-06-08 21:33:02 +02:00
README.md feat(readme): Open PR instead of issue for adding extensions to the extensions list 2023-10-30 10:14:44 +01:00

Discord ➚
Documentation ➚

Introduction
Installation
Development
Extensions
Contributors
Related Links


Introduction

Blueprint is an open-source extension framework/manager for Pterodactyl. Developers can create versatile, easy-to-install extensions that system administrators can install within minutes (and sometimes even seconds!).

We aim to introduce new developers to Blueprint with easy to understand guides, documentation, developer commands, community support and more.


Installation

What you need:

Installation:

Important Blueprint doesn't mix well with other modifications, so if you already have any, perform a panel update before moving on with this guide.


  1. 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
  1. Download the latest release of Blueprint and extract it (stable build) or pull the files via git (bleeding-edge build).
  2. If you haven't already, place the Blueprint files inside of your Pterodactyl folder. (common location is /var/www/pterodactyl)
  3. 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
  1. 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.

Development

We've made some guides and documentation for extension development over on GitBook. We are adding more guides over time, don't hesitate to suggest a topic for future guides.


Extensions

Note

Open a pull request on GitHub and add your extension here (in alphabetic order). To install an extension, upload your something.blueprint file to your Pterodactyl folder and run blueprint -install something.


Announcements: PterodactylMarket, sourceXchange, BuiltByBit
Arc.io Integration: BuiltByBit
Cats: sourceXchange
Cookies: sourceXchange
dbEdit: GitHub
Loader: sourceXchange
Nebula: PterodactylMarket, sourceXchange, BuiltByBit
Recolor: GitHub, sourceXchange, BuiltByBit
Redirect: PterodactylMarket, GitHub


Contributors

prplwtf - creator and maintainer
ahwxorg - contributor
alipoyrazaydin - contributor
sp11rum - contributor
phedona - contributor
codixer - contributor


Pterodactyl is a free, open-source game server management panel built with PHP, React, and Go.

teamblueprint/templates is a repository with initialization templates for extension development.