[PR #599] [CLOSED] Add optimize filament to docker #847

Closed
opened 2026-02-04 18:55:29 +03:00 by OVERLORD · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/pelican-dev/panel/pull/599
Author: @lancepioch
Created: 10/2/2024
Status: Closed

Base: mainHead: filament-optimize


📝 Commits (10+)

  • d82264b Update entrypoint.sh
  • 329a399 Add can check
  • 45b73de Switch to authorize
  • b003404 Collection of small admin area changes (#604)
  • 6a8ff1a Update app/Filament/Resources/ServerResource/Pages/ListServers.php
  • a946669 Add warning about database data to database settings command (#612)
  • e23a4a6 Fix escaping for EnvironmentWriterTrait (#610)
  • 3ec9026 Update API for roles (#611)
  • 8638e53 Merge pull request #601 from RMartinOscar/issue/600
  • 3c5da1c Replace all number_format with Number::format (#617)

📊 Changes

53 files changed (+468 additions, -383 deletions)

View changed files

📝 .env.example (+2 -0)
📝 .github/docker/entrypoint.sh (+3 -0)
📝 app/Console/Commands/Environment/AppSettingsCommand.php (+2 -23)
📝 app/Console/Commands/Environment/DatabaseSettingsCommand.php (+7 -0)
📝 app/Filament/Pages/Installer/PanelInstaller.php (+73 -52)
📝 app/Filament/Pages/Installer/Steps/AdminUserStep.php (+4 -2)
app/Filament/Pages/Installer/Steps/CompletedStep.php (+34 -0)
📝 app/Filament/Pages/Installer/Steps/DatabaseStep.php (+57 -40)
📝 app/Filament/Pages/Installer/Steps/EnvironmentStep.php (+20 -16)
📝 app/Filament/Pages/Installer/Steps/RedisStep.php (+37 -22)
📝 app/Filament/Pages/Installer/Steps/RequirementsStep.php (+6 -4)
📝 app/Filament/Pages/Settings.php (+0 -1)
📝 app/Filament/Resources/ApiKeyResource.php (+0 -7)
📝 app/Filament/Resources/ApiKeyResource/Pages/ListApiKeys.php (+12 -1)
📝 app/Filament/Resources/DatabaseHostResource.php (+1 -8)
📝 app/Filament/Resources/DatabaseHostResource/Pages/CreateDatabaseHost.php (+3 -3)
📝 app/Filament/Resources/DatabaseHostResource/Pages/EditDatabaseHost.php (+3 -3)
📝 app/Filament/Resources/DatabaseHostResource/Pages/ListDatabaseHosts.php (+13 -1)
📝 app/Filament/Resources/DatabaseResource.php (+0 -7)
📝 app/Filament/Resources/EggResource.php (+0 -7)

...and 33 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/pelican-dev/panel/pull/599 **Author:** [@lancepioch](https://github.com/lancepioch) **Created:** 10/2/2024 **Status:** ❌ Closed **Base:** `main` ← **Head:** `filament-optimize` --- ### 📝 Commits (10+) - [`d82264b`](https://github.com/pelican-dev/panel/commit/d82264be0d21dfdd2450cd08a14ea220163a26d9) Update entrypoint.sh - [`329a399`](https://github.com/pelican-dev/panel/commit/329a3993c1794d50f09323d83d89c68203410ed5) Add can check - [`45b73de`](https://github.com/pelican-dev/panel/commit/45b73debc23ed2216b943b13b5d8ac45d980aa00) Switch to authorize - [`b003404`](https://github.com/pelican-dev/panel/commit/b003404aeaecebf829caa16884fbab7c8fc1e8dd) Collection of small admin area changes (#604) - [`6a8ff1a`](https://github.com/pelican-dev/panel/commit/6a8ff1a1863add9f41d846a77022a3bfeb81e955) Update app/Filament/Resources/ServerResource/Pages/ListServers.php - [`a946669`](https://github.com/pelican-dev/panel/commit/a946669dc893b5ca0b85811aa087d791e18e527c) Add warning about database data to database settings command (#612) - [`e23a4a6`](https://github.com/pelican-dev/panel/commit/e23a4a667a5906fe389bebe287deed88063f02d7) Fix escaping for `EnvironmentWriterTrait` (#610) - [`3ec9026`](https://github.com/pelican-dev/panel/commit/3ec90264bd08d8dd40f8358c75f442667f7643e5) Update API for roles (#611) - [`8638e53`](https://github.com/pelican-dev/panel/commit/8638e53f2ba0a5b03ef5497ae732b7b1de854d10) Merge pull request #601 from RMartinOscar/issue/600 - [`3c5da1c`](https://github.com/pelican-dev/panel/commit/3c5da1cd70c89dd3a38735c7d8d210242fecaacb) Replace all `number_format` with `Number::format` (#617) ### 📊 Changes **53 files changed** (+468 additions, -383 deletions) <details> <summary>View changed files</summary> 📝 `.env.example` (+2 -0) 📝 `.github/docker/entrypoint.sh` (+3 -0) 📝 `app/Console/Commands/Environment/AppSettingsCommand.php` (+2 -23) 📝 `app/Console/Commands/Environment/DatabaseSettingsCommand.php` (+7 -0) 📝 `app/Filament/Pages/Installer/PanelInstaller.php` (+73 -52) 📝 `app/Filament/Pages/Installer/Steps/AdminUserStep.php` (+4 -2) ➕ `app/Filament/Pages/Installer/Steps/CompletedStep.php` (+34 -0) 📝 `app/Filament/Pages/Installer/Steps/DatabaseStep.php` (+57 -40) 📝 `app/Filament/Pages/Installer/Steps/EnvironmentStep.php` (+20 -16) 📝 `app/Filament/Pages/Installer/Steps/RedisStep.php` (+37 -22) 📝 `app/Filament/Pages/Installer/Steps/RequirementsStep.php` (+6 -4) 📝 `app/Filament/Pages/Settings.php` (+0 -1) 📝 `app/Filament/Resources/ApiKeyResource.php` (+0 -7) 📝 `app/Filament/Resources/ApiKeyResource/Pages/ListApiKeys.php` (+12 -1) 📝 `app/Filament/Resources/DatabaseHostResource.php` (+1 -8) 📝 `app/Filament/Resources/DatabaseHostResource/Pages/CreateDatabaseHost.php` (+3 -3) 📝 `app/Filament/Resources/DatabaseHostResource/Pages/EditDatabaseHost.php` (+3 -3) 📝 `app/Filament/Resources/DatabaseHostResource/Pages/ListDatabaseHosts.php` (+13 -1) 📝 `app/Filament/Resources/DatabaseResource.php` (+0 -7) 📝 `app/Filament/Resources/EggResource.php` (+0 -7) _...and 33 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
OVERLORD added the pull-request label 2026-02-04 18:55:29 +03:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/panel#847