https://github.com/martinpl/prompt
Prompt is a proof of concept php-based desktop command palette application built with Laravel Livewire and NativePHP. It is designed to be easily extensible, allowing developers to seamlessly integrate functionalities.
https://github.com/martinpl/prompt
laravel livewire nativephp php
Last synced: 2 months ago
JSON representation
Prompt is a proof of concept php-based desktop command palette application built with Laravel Livewire and NativePHP. It is designed to be easily extensible, allowing developers to seamlessly integrate functionalities.
- Host: GitHub
- URL: https://github.com/martinpl/prompt
- Owner: martinpl
- Created: 2024-01-10T19:48:12.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-08-09T18:51:16.000Z (almost 2 years ago)
- Last Synced: 2025-12-26T20:39:34.461Z (6 months ago)
- Topics: laravel, livewire, nativephp, php
- Language: PHP
- Homepage:
- Size: 19.7 MB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# About Prompt
Prompt is a proof of concept php-based desktop command palette application built with [Laravel](https://laravel.com/) [Livewire](https://livewire.laravel.com/) and [NativePHP](https://nativephp.com/). It is designed to be easily extensible, allowing developers to seamlessly integrate functionalities. The API is inspired by Raycast.

## Extensions
Extension examples are located in separate repository [prompt-extensions](https://github.com/MartinPL/prompt-extensions).
Install them by copying folders to
(production): `/homer/user/.prompt/extensions`
(development) `/extensions`
## Development
Requires: php, php-sqlite (pdo_sqlite), node, npm
```
npm install
npm run build
composer install
composer run-script post-root-package-install
composer run-script post-create-project-cmd
php artisan native:install
php artisan native:migrate
php artisan native:serve
```