This commit is contained in:
Lance Pioch 2024-03-19 04:54:39 -04:00
parent c4c4834acc
commit b11810588a
10 changed files with 35 additions and 42 deletions

View File

@ -36,8 +36,5 @@ MAIL_PASSWORD=
MAIL_ENCRYPTION=tls MAIL_ENCRYPTION=tls
MAIL_FROM_ADDRESS=no-reply@example.com MAIL_FROM_ADDRESS=no-reply@example.com
MAIL_FROM_NAME="Panel Administrator" MAIL_FROM_NAME="Panel Administrator"
# You should set this to your domain to prevent it defaulting to 'localhost', causing # Set this to your domain to prevent it defaulting to 'localhost', causing mail servers such as Gmail to reject your mail
# mail servers such as Gmail to reject your mail.
#
# @see: https://github.com/pterodactyl/panel/pull/3110
# MAIL_EHLO_DOMAIN=panel.example.com # MAIL_EHLO_DOMAIN=panel.example.com

View File

@ -5,7 +5,7 @@ body:
- type: markdown - type: markdown
attributes: attributes:
value: | value: |
Bug reports should only be used for reporting issues with how the software works. For assistance installing this software, as well as debugging issues with dependencies, please use our [Discord server](https://discord.gg/pterodactyl). Bug reports should only be used for reporting issues with how the software works. For assistance installing this software, as well as debugging issues with dependencies, please use our Discord Server.
- type: textarea - type: textarea
attributes: attributes:
@ -58,7 +58,7 @@ body:
attributes: attributes:
label: Docker Image label: Docker Image
description: The specific Docker image you are using for the game(s) above. description: The specific Docker image you are using for the game(s) above.
placeholder: ghcr.io/pterodactyl/yolks:java_17 placeholder: ghcr.io/pelican-dev/yolks:java_17
- type: textarea - type: textarea
id: panel-logs id: panel-logs
@ -68,8 +68,8 @@ body:
Run the following command to collect logs on your system. Run the following command to collect logs on your system.
Wings: `sudo wings diagnostics` Wings: `sudo wings diagnostics`
Panel: `tail -n 150 /var/www/pterodactyl/storage/logs/laravel-$(date +%F).log | nc pteropaste.com 99` Panel: `tail -n 150 /var/www/pelican/storage/logs/laravel-$(date +%F).log | nc pelipaste.com 99`
placeholder: "https://pteropaste.com/a1h6z" placeholder: "https://pelipaste.com/a1h6z"
render: bash render: bash
validations: validations:
required: false required: false
@ -77,7 +77,7 @@ body:
- type: checkboxes - type: checkboxes
attributes: attributes:
label: Is there an existing issue for this? label: Is there an existing issue for this?
description: Please [search here](https://github.com/pterodactyl/panel/issues) to see if an issue already exists for your problem. description: Please [search here](https://github.com/pelican-dev/panel/issues) to see if an issue already exists for your problem.
options: options:
- label: I have searched the existing issues before opening this issue. - label: I have searched the existing issues before opening this issue.
required: true required: true

View File

@ -1,8 +1,8 @@
blank_issues_enabled: true blank_issues_enabled: true
contact_links: contact_links:
- name: Installation Help - name: Installation Help
url: https://discord.gg/pterodactyl url: https://discord.gg/GB87YZDW8U
about: Please visit our Discord for help with your installation. about: Please visit our Discord for help with your installation.
- name: General Question - name: General Question
url: https://discord.gg/pterodactyl url: https://discord.gg/GB87YZDW8U
about: Please visit our Discord for general questions about Pterodactyl. about: Please visit our Discord for general questions about Pelican.

View File

@ -1,8 +1,8 @@
# Pterodactyl Panel - Docker Image # Pelican Panel - Docker Image
This is a ready to use docker image for the panel. This is a ready to use docker image for the panel.
## Requirements ## Requirements
This docker image requires some additional software to function. The software can either be provided in other containers (see the [docker-compose.yml](https://github.com/pterodactyl/panel/blob/develop/docker-compose.example.yml) as an example) or as existing instances. This docker image requires some additional software to function. The software can either be provided in other containers (see the [docker-compose.yml](https://github.com/pelican-dev/panel/blob/develop/docker-compose.example.yml) as an example) or as existing instances.
A mysql database is required. We recommend the stock [MariaDB Image](https://hub.docker.com/_/mariadb/) image if you prefer to run it in a docker container. As a non-containerized option we recommend mariadb. A mysql database is required. We recommend the stock [MariaDB Image](https://hub.docker.com/_/mariadb/) image if you prefer to run it in a docker container. As a non-containerized option we recommend mariadb.
@ -12,7 +12,7 @@ You can provide additional settings using a custom `.env` file or by setting the
## Setup ## Setup
Start the docker container and the required dependencies (either provide existing ones or start containers as well, see the [docker-compose.yml](https://github.com/pterodactyl/panel/blob/develop/docker-compose.example.yml) file as an example. Start the docker container and the required dependencies (either provide existing ones or start containers as well, see the [docker-compose.yml](https://github.com/pelican-dev/panel/blob/develop/docker-compose.example.yml) file as an example.
After the startup is complete you'll need to create a user. After the startup is complete you'll need to create a user.
If you are running the docker container without docker-compose, use: If you are running the docker container without docker-compose, use:

View File

@ -30,8 +30,8 @@ jobs:
REF: ${{ github.ref }} REF: ${{ github.ref }}
run: | run: |
BRANCH=release/${REF:10} BRANCH=release/${REF:10}
git config --local user.email "ci@pterodactyl.io" git config --local user.email "ci@pelican.dev"
git config --local user.name "Pterodactyl CI" git config --local user.name "Pelican CI"
git checkout -b $BRANCH git checkout -b $BRANCH
git push -u origin $BRANCH git push -u origin $BRANCH
sed -i "s/ 'version' => 'canary',/ 'version' => '${REF:11}',/" config/app.php sed -i "s/ 'version' => 'canary',/ 'version' => '${REF:11}',/" config/app.php

View File

@ -9,7 +9,7 @@ use Symfony\Component\Console\Helper\ProgressBar;
class UpgradeCommand extends Command class UpgradeCommand extends Command
{ {
protected const DEFAULT_URL = 'https://github.com/pterodactyl/panel/releases/%s/panel.tar.gz'; protected const DEFAULT_URL = 'https://github.com/pelican-dev/panel/releases/%s/panel.tar.gz';
protected $signature = 'p:upgrade protected $signature = 'p:upgrade
{--user= : The user that PHP runs under. All files will be owned by this user.} {--user= : The user that PHP runs under. All files will be owned by this user.}

View File

@ -19,7 +19,7 @@ class ManifestDoesNotExistSolution implements Solution
public function getDocumentationLinks(): array public function getDocumentationLinks(): array
{ {
return [ return [
'Docs' => 'https://github.com/pterodactyl/panel/blob/develop/package.json', 'Docs' => 'https://github.com/pelican/panel/blob/master/package.json',
]; ];
} }
} }

View File

@ -1,25 +1,21 @@
[![Logo Image](https://cdn.pterodactyl.io/logos/new/pterodactyl_logo.png)](https://pterodactyl.io) # Pelican Panel
# Pterodactyl Panel Pelican® is a free, open-source game server management panel built with PHP, React, and Go. Designed with security
in mind, Pelican runs all game servers in isolated Docker containers while exposing a beautiful and intuitive
Pterodactyl® is a free, open-source game server management panel built with PHP, React, and Go. Designed with security
in mind, Pterodactyl runs all game servers in isolated Docker containers while exposing a beautiful and intuitive
UI to end users. UI to end users.
Stop settling for less. Make game servers a first class citizen on your platform. Stop settling for less. Make game servers a first class citizen on your platform.
![Image](https://cdn.pterodactyl.io/site-assets/pterodactyl_v1_demo.gif)
## Documentation ## Documentation
* [Panel Documentation](https://pterodactyl.io/panel/1.0/getting_started.html) * [Panel Documentation](https://pelican.dev/panel/1.0/getting_started.html)
* [Wings Documentation](https://pterodactyl.io/wings/1.0/installing.html) * [Wings Documentation](https://pelican.dev/wings/1.0/installing.html)
* [Community Guides](https://pterodactyl.io/community/about.html) * [Community Guides](https://pelican.dev/community/about.html)
* [Official Discord](https://discord.gg/pterodactyl) * [Official Discord](https://discord.gg/GB87YZDW8U)
### Supported Games ### Supported Games
Pterodactyl supports a wide variety of games by utilizing Docker containers to isolate each instance. This gives Pelican supports a wide variety of games by utilizing Docker containers to isolate each instance. This gives
you the power to run game servers without bloating machines with a host of additional dependencies. you the power to run game servers without bloating machines with a host of additional dependencies.
Some of our core supported games include: Some of our core supported games include:
@ -46,4 +42,4 @@ and there are plenty more games available provided by the community. Some of the
* Discord ATLBot, and most other Node.js/Python discord bots * Discord ATLBot, and most other Node.js/Python discord bots
* [and many more...](https://github.com/parkervcp/eggs) * [and many more...](https://github.com/parkervcp/eggs)
Pterodactyl® Copyright ® 2015 - 2022 Pterodactyl Copyright Pelican® 2024

View File

@ -91,5 +91,5 @@ return [
'enable' => 'Enable', 'enable' => 'Enable',
'disable' => 'Disable', 'disable' => 'Disable',
'save' => 'Save', 'save' => 'Save',
'copyright' => '® 2015 - :year Pterodactyl', 'copyright' => '® 2024 - :year Pelican',
]; ];

View File

@ -48,7 +48,7 @@
</div> </div>
<div class="clearfix visible-xs-block">&nbsp;</div> <div class="clearfix visible-xs-block">&nbsp;</div>
<div class="col-xs-6 col-sm-3 text-center"> <div class="col-xs-6 col-sm-3 text-center">
<a href="https://github.com/pterodactyl/panel"><button class="btn btn-primary" style="width:100%;"><i class="fa fa-fw fa-support"></i> Github</button></a> <a href="https://github.com/pelican-dev/panel"><button class="btn btn-primary" style="width:100%;"><i class="fa fa-fw fa-support"></i> Github</button></a>
</div> </div>
<div class="col-xs-6 col-sm-3 text-center"> <div class="col-xs-6 col-sm-3 text-center">
<a href="{{ $version->getDonations() }}"><button class="btn btn-success" style="width:100%;"><i class="fa fa-fw fa-money"></i> Support the Project</button></a> <a href="{{ $version->getDonations() }}"><button class="btn btn-success" style="width:100%;"><i class="fa fa-fw fa-money"></i> Support the Project</button></a>