From 2cb1d58264f93fadcd158414f831361ceb02eb40 Mon Sep 17 00:00:00 2001 From: BaileyCodes Date: Thu, 11 Jun 2026 19:58:48 -0500 Subject: [PATCH] Initial commit: project scaffold --- .gitignore | 23 +++++++++++++++++++++++ README.md | 7 +++++++ 2 files changed, 30 insertions(+) create mode 100644 .gitignore create mode 100644 README.md diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..2ab481b --- /dev/null +++ b/.gitignore @@ -0,0 +1,23 @@ +# Dependencies +node_modules/ +vendor/ + +# Environment +.env +.env.* +!.env.example + +# IDE +.idea/ +.vscode/ +*.swp +*.swo + +# OS +.DS_Store +Thumbs.db + +# Build / Cache +dist/ +build/ +*.log diff --git a/README.md b/README.md new file mode 100644 index 0000000..7d48ff9 --- /dev/null +++ b/README.md @@ -0,0 +1,7 @@ +# Pterodactyl Addon + +A custom addon for the Pterodactyl Panel. + +## Setup + +_Coming soon._