mirror of
https://github.com/pelican-dev/panel.git
synced 2026-05-04 18:00:48 +03:00
[PR #504] [MERGED] Web Installer #798
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/pelican-dev/panel/pull/504
Author: @Boy132
Created: 7/23/2024
Status: ✅ Merged
Merged: 8/3/2024
Merged by: @Boy132
Base:
main← Head:feature/install-process📝 Commits (10+)
d5537dcsimplify setup commandf84aef1add installer paged4bb259add route for installer0ba15cbadjust gitignore43aa18eset colors globallyff24566add "unsaved data changes" alertba73afeadd helper method to check if panel is installed6740abbmake nicerbef2364redis username isn't required7e2f8a3bring back db settings command📊 Changes
17 files changed (+778 additions, -131 deletions)
View changed files
📝
.env.example(+1 -0)📝
app/Console/Commands/Environment/AppSettingsCommand.php(+14 -121)➕
app/Console/Commands/Environment/CacheSettingsCommand.php(+68 -0)➕
app/Console/Commands/Environment/QueueSettingsCommand.php(+66 -0)➕
app/Console/Commands/Environment/SessionSettingsCommand.php(+69 -0)➕
app/Filament/Pages/Installer/PanelInstaller.php(+144 -0)➕
app/Filament/Pages/Installer/Steps/AdminUserStep.php(+31 -0)➕
app/Filament/Pages/Installer/Steps/DatabaseStep.php(+95 -0)➕
app/Filament/Pages/Installer/Steps/EnvironmentStep.php(+94 -0)➕
app/Filament/Pages/Installer/Steps/RedisStep.php(+42 -0)➕
app/Filament/Pages/Installer/Steps/RequirementsStep.php(+87 -0)📝
app/Providers/AppServiceProvider.php(+11 -0)📝
app/Providers/Filament/AdminPanelProvider.php(+0 -10)➕
app/Traits/Commands/RequestRedisSettingsTrait.php(+37 -0)📝
app/helpers.php(+8 -0)➕
resources/views/filament/pages/installer.blade.php(+7 -0)📝
routes/base.php(+4 -0)📄 Description
Adds a web installer (app url +





/installer) with 4 steps (5 if redis is selected):It also handles running migrations/ seeding and setting up the queue worker service file. The app settings command (
php artisan p:environment:setup) has been simplified to now only copy the example .env and generate an app key.The installer is not enforced, there is no automatic redirect if the panel isn't "installed".
Also closes #5.
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.