# Installation

# Local Installation

  1. Extract the project
  2. Go to the project root directory and edit .env file to match your configuration
DB_DATABASE=your_database_name
DB_USERNAME=your_database_username
DB_PASSWORD=your_database_password
  1. Now run the following command:
php artisan migrate:fresh --seed
php artisan serve
  1. visit http://localhost:8000 (opens new window) and project will start running
  2. Go to register page http://localhost:8000/register (opens new window) and register as a new user.

Registration

After registration is successful you will get redirected to the feed page. You will be able to see the page like this:

Feed

# Server Installation

  1. Extract the project.
  2. Make sure the domain document path points to public/ directory
  3. Edit .env file to change the following environment variables
APP_URL=http://yourdomainname.com

DB_DATABASE=your_database_name
DB_USERNAME=your_database_username
DB_PASSWORD=your_database_password

Make sure to change APP_URL

Make sure to change APP_URL to your application url so that you will not have issue related to image. Also make sure to run php artisan storage:link

  1. Go to terminal section from cpanel and run the following command:
php artisan migrate:fresh --seed
php artisan serve
  1. visit http://www.yourproject.com and project will start running.