├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.yml │ ├── config.yml │ ├── egg-request.yml │ └── install-bug-report.yml └── pull_request_template.md ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── bun ├── README.md ├── egg-bun.json └── egg-pterodactyl-bun.json ├── c# ├── README.md ├── egg-generic-c.json └── egg-pterodactyl-generic-c.json ├── dart ├── README.md ├── egg-dart-generic.json └── egg-pterodactyl-dart-generic.json ├── deno ├── README.md ├── egg-deno-generic.json └── egg-pterodactyl-deno-generic.json ├── elixir ├── README.md ├── egg-elixir.json └── egg-pterodactyl-elixir.json ├── golang ├── README.md ├── egg-golang-generic.json └── egg-pterodactyl-golang-generic.json ├── java ├── README.md ├── egg-generic-java.json └── egg-pterodactyl-generic-java.json ├── lua └── luvit │ ├── README.md │ ├── egg-luvit-generic.json │ └── egg-pterodactyl-luvit-generic.json ├── nodejs ├── README.md ├── egg-node-js-generic.json └── egg-pterodactyl-node-js-generic.json ├── nodemon ├── README.md ├── egg-nodemon.json └── egg-pterodactyl-nodemon.json ├── python ├── README.md ├── egg-pterodactyl-python-generic.json └── egg-python-generic.json └── rust ├── README.md ├── egg-pterodactyl-rust-generic.json └── egg-rust-generic.json /.github/ISSUE_TEMPLATE/bug-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/generic/HEAD/.github/ISSUE_TEMPLATE/bug-report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/generic/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/egg-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/generic/HEAD/.github/ISSUE_TEMPLATE/egg-request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/install-bug-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/generic/HEAD/.github/ISSUE_TEMPLATE/install-bug-report.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/generic/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/generic/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/generic/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/generic/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/generic/HEAD/README.md -------------------------------------------------------------------------------- /bun/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/generic/HEAD/bun/README.md -------------------------------------------------------------------------------- /bun/egg-bun.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/generic/HEAD/bun/egg-bun.json -------------------------------------------------------------------------------- /bun/egg-pterodactyl-bun.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/generic/HEAD/bun/egg-pterodactyl-bun.json -------------------------------------------------------------------------------- /c#/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/generic/HEAD/c#/README.md -------------------------------------------------------------------------------- /c#/egg-generic-c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/generic/HEAD/c#/egg-generic-c.json -------------------------------------------------------------------------------- /c#/egg-pterodactyl-generic-c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/generic/HEAD/c#/egg-pterodactyl-generic-c.json -------------------------------------------------------------------------------- /dart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/generic/HEAD/dart/README.md -------------------------------------------------------------------------------- /dart/egg-dart-generic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/generic/HEAD/dart/egg-dart-generic.json -------------------------------------------------------------------------------- /dart/egg-pterodactyl-dart-generic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/generic/HEAD/dart/egg-pterodactyl-dart-generic.json -------------------------------------------------------------------------------- /deno/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/generic/HEAD/deno/README.md -------------------------------------------------------------------------------- /deno/egg-deno-generic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/generic/HEAD/deno/egg-deno-generic.json -------------------------------------------------------------------------------- /deno/egg-pterodactyl-deno-generic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/generic/HEAD/deno/egg-pterodactyl-deno-generic.json -------------------------------------------------------------------------------- /elixir/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/generic/HEAD/elixir/README.md -------------------------------------------------------------------------------- /elixir/egg-elixir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/generic/HEAD/elixir/egg-elixir.json -------------------------------------------------------------------------------- /elixir/egg-pterodactyl-elixir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/generic/HEAD/elixir/egg-pterodactyl-elixir.json -------------------------------------------------------------------------------- /golang/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/generic/HEAD/golang/README.md -------------------------------------------------------------------------------- /golang/egg-golang-generic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/generic/HEAD/golang/egg-golang-generic.json -------------------------------------------------------------------------------- /golang/egg-pterodactyl-golang-generic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/generic/HEAD/golang/egg-pterodactyl-golang-generic.json -------------------------------------------------------------------------------- /java/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/generic/HEAD/java/README.md -------------------------------------------------------------------------------- /java/egg-generic-java.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/generic/HEAD/java/egg-generic-java.json -------------------------------------------------------------------------------- /java/egg-pterodactyl-generic-java.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/generic/HEAD/java/egg-pterodactyl-generic-java.json -------------------------------------------------------------------------------- /lua/luvit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/generic/HEAD/lua/luvit/README.md -------------------------------------------------------------------------------- /lua/luvit/egg-luvit-generic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/generic/HEAD/lua/luvit/egg-luvit-generic.json -------------------------------------------------------------------------------- /lua/luvit/egg-pterodactyl-luvit-generic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/generic/HEAD/lua/luvit/egg-pterodactyl-luvit-generic.json -------------------------------------------------------------------------------- /nodejs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/generic/HEAD/nodejs/README.md -------------------------------------------------------------------------------- /nodejs/egg-node-js-generic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/generic/HEAD/nodejs/egg-node-js-generic.json -------------------------------------------------------------------------------- /nodejs/egg-pterodactyl-node-js-generic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/generic/HEAD/nodejs/egg-pterodactyl-node-js-generic.json -------------------------------------------------------------------------------- /nodemon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/generic/HEAD/nodemon/README.md -------------------------------------------------------------------------------- /nodemon/egg-nodemon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/generic/HEAD/nodemon/egg-nodemon.json -------------------------------------------------------------------------------- /nodemon/egg-pterodactyl-nodemon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/generic/HEAD/nodemon/egg-pterodactyl-nodemon.json -------------------------------------------------------------------------------- /python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/generic/HEAD/python/README.md -------------------------------------------------------------------------------- /python/egg-pterodactyl-python-generic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/generic/HEAD/python/egg-pterodactyl-python-generic.json -------------------------------------------------------------------------------- /python/egg-python-generic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/generic/HEAD/python/egg-python-generic.json -------------------------------------------------------------------------------- /rust/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/generic/HEAD/rust/README.md -------------------------------------------------------------------------------- /rust/egg-pterodactyl-rust-generic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/generic/HEAD/rust/egg-pterodactyl-rust-generic.json -------------------------------------------------------------------------------- /rust/egg-rust-generic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/generic/HEAD/rust/egg-rust-generic.json --------------------------------------------------------------------------------