Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/teschiopol/onlybea-php
Best Employees Advisor
https://github.com/teschiopol/onlybea-php
laravel php tailwind vue3
Last synced: 6 days ago
JSON representation
Best Employees Advisor
- Host: GitHub
- URL: https://github.com/teschiopol/onlybea-php
- Owner: teschiopol
- Created: 2024-09-05T22:00:00.000Z (2 months ago)
- Default Branch: main
- Last Pushed: 2024-09-13T18:02:29.000Z (2 months ago)
- Last Synced: 2024-09-14T08:51:03.975Z (2 months ago)
- Topics: laravel, php, tailwind, vue3
- Language: Vue
- Homepage: https://onlybeaphp.vercel.app
- Size: 450 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# OnlyBEA ✨
Best Employees Advisor
## Requirements 🤖
App is tested with
- PHP v8.3.7
- Laravel v11.21.0
- Vue v3.4## Install 💾
```bash
composer installphp artisan migrate
npm i
npm run build
```Change file .env.example in .env and launch
```bash
php artisan key:generate
```You will see the key in APP_KEY
## Run 🏃🏻♂️
```bash
php artisan serve
```Then open the [web app](http://localhost:8000/).
Enter [email protected] - admintest
If you want example data
```bash
php artisan db:seed
```## Docker 🐳
```bash
docker compose up
```## Test 🔍
```bash
php artisan test
```### Troubleshoot 🛠️
If you encounter in a error like `No application encryption key has been specified.`, try this command and then restart the server.
```bash
php artisan key:generate
```Problem with database, simple use:
```bash
php artisan migrate:fresh --seed
```