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

https://github.com/engineerdanny/learning-laravel

A simple laravel powered API with authentication, database (SQL), storage (local storage) and more!!!
https://github.com/engineerdanny/learning-laravel

laravel pgsql php sqlite

Last synced: 21 days ago
JSON representation

A simple laravel powered API with authentication, database (SQL), storage (local storage) and more!!!

Awesome Lists containing this project

README

        

# LEARNING LARAVEL
This is a project to experiment with Laravel

## MYSQL config
Commands

| ```mysql.server start``` | Starts MYSQL server |
|------------------------------|---------------------------------------|
| ```mysql.server stop``` | Stop MYSQL server |
| ```mysql.server restart``` | Restart MYSQL server |
| ```mysql -uroot``` | Shows MYSQL monitor |
| ```top``` | To show all processes on the computer |
| ```sudo killall mysqld``` | To Kill All MYSQL processes |
| ```composer dump-autoload``` | Autoload the app |

# Run 👇 inside the monitor
ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'root';

# Starting a Laravel Project
```bash
composer create-project laravel/laravel example-app

cd example-app

php artisan serve
```

## Temporal UPDATE of PHP Version to support packages (MACOS)
```bash
export PATH="/usr/local/opt/[email protected]/bin:$PATH"
export PATH="/usr/local/opt/[email protected]/sbin:$PATH"
```