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=

Comments

Popular posts from this blog

Generate SHA-1 and SHA-256 for Debug and Release android app

How to Import and Export MySQL Database Command line in Linux

JAVA_HOME setup and Integrate with Android Studio Project in Ubuntu