Protoqol / Prequel

Prequel for Laravel. Clear and concise database management. Unfortunately, not actively maintained due to time constraints.
https://packagist.org/packages/protoqol/prequel
MIT License
1.54k stars 96 forks source link

Allow use in production #163

Open LiamLoewen opened 10 months ago

LiamLoewen commented 10 months ago

[FEATURE] Allow use in production

Issue or feature explanation

Providing the option to access Prequel in production will allow it to be used in system administrator dashboards for inexpensive DB operations. Setting it behind a warning and defaulting it to false will discourage its use for those who don't know exactly what they are doing.

Proposed solution/change

An additional boolean config setting (default: false) which can be enabled from .env was added to config/prequel.php. This variable is then checked in the Authorised middleware, allowing the configuration check to return true for enabled when the app environment is production and the production_enabled flag is enabled.

Love this package by the way, it's so much better than phpMyAdmin.

QuintenJustus commented 9 months ago

Nice one! Thanks for contributing, will include in next release.

pratik149 commented 9 months ago

Along with this, better if we also have a "Basic HTTP Auth" to protect it in production.

I have seen this implemented in Log Viewer package.

https://github.com/opcodesio/log-viewer/blob/f5ac2dffd6ca734e54995807d12cef5db7304940/config/log-viewer.php#L107

sinceow commented 5 months ago

Looking forward to ...