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
test
for 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