Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/iarsene69/mini-test


https://github.com/iarsene69/mini-test

Last synced: about 1 month ago
JSON representation

Awesome Lists containing this project

README

        

# Test

This is a job test repository

# Backend

Configure and run laravel backend locally

## Configure and run application

- Switch to laravel folder

```bash
cd laravel-api
```

- Create .env file inside your root directory and copy .env.example to your .env file
- Make sure your Database is connected
- Generate application key
```php
php artisan key:generate
```
- Install dependencies
```php
composer install
```
- Migrate and seed database
```php
php artisan migrate:fresh --seed
```
- Run application
```php
php artisan serve
```

# Frontend
Configure and run react frontend locally

## Configure and run application

- Switch to react folder
```bash
cd react-front-end
```
- Install dependencies
```javascript
npm install
```
- Run application
```javascript
npm run dev
```