Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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 install

php 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
```