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!!!
- Host: GitHub
- URL: https://github.com/engineerdanny/learning-laravel
- Owner: EngineerDanny
- Created: 2021-07-29T09:12:01.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2023-02-02T01:31:14.000Z (over 2 years ago)
- Last Synced: 2023-03-04T23:24:50.642Z (about 2 years ago)
- Topics: laravel, pgsql, php, sqlite
- Language: PHP
- Homepage:
- Size: 321 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
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"
```