An Instagram Clone using Laravel
- Clone project
git clone https://github.com/KhalidLam/instagramClone.gitL - Go to the folder
cd instagramClone - Install composer
composer install - Install npm package
npm install - Copy and edit .env file from .env.example
cp .env.example .env - Generate project key
php artisan key:generate - Create an empty database
testfor example - In the .env file, change database information
DB_DATABASE=test - Migrate the database
php artisan migrate - Create symbolic link for storage
php artisan storage:link - Run project
php artisan serve
