Skip to content

Latest commit

 

History

History
36 lines (24 loc) · 1.42 KB

README.md

File metadata and controls

36 lines (24 loc) · 1.42 KB

Instagram Clone

Instagram clone, made with Laravel with some extra features that are not available in Instagram web.

  • PHP 7.4.29
  • Laravel v8.83.14

MIT License

Preview

Run locally

Assuming you already have all the components needed and environment set up for running Laravel:

  • Open cmd and run git clone https://github.com/ayaxxchanz/Laravel-Instagram-Clone/
  • Run composer install
  • Run cp .env.example .env
  • Open .env file in root. Change db connection to sqlite, DB_CONNECTION=sqlite and delete the rest (host, port, database, username, password) and save the file
  • Create a new file named database.sqlite in database folder
  • Run php artisan key:generate
  • Run php artisan migrate
  • Run php artisan storage:link
  • Run php artisan serve

You can now access the application with the address given in cmd.

If you don't have all the components yet: