Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/iarsene69/mini-test
https://github.com/iarsene69/mini-test
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/iarsene69/mini-test
- Owner: iArsene69
- Created: 2024-01-19T10:25:26.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-01-19T10:49:25.000Z (about 1 year ago)
- Last Synced: 2024-11-07T01:34:13.098Z (3 months ago)
- Language: PHP
- Size: 145 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```