Laravel Stuffs
Create project with composer:
composer create-project laravel/laravel example-app
To run with IP address for Mobile app development:
php artisan serve --host 0.0.0.0 --port 8000
To migrate:
php artisan migrate
Sqlite:
touch database/database.sqlite
User absolute path for sqlite:
DB_CONNECTION=sqlite
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=/media/than/8d3a469e-9421-470b-842e-26012f02dd47/than/dev_laravel/example-app/database/database.sqlite
DB_USERNAME=root
DB_PASSWORD=
Reference: https://laravel.com/docs/9.x/installation
Comments
Post a Comment