Skip to content

Latest commit

 

History

History
41 lines (37 loc) · 733 Bytes

README.md

File metadata and controls

41 lines (37 loc) · 733 Bytes

Fake Twitter

Fake Twitter is an app like twitter in which user can create tweet, follow other user, react to other people's tweet

Requirements

  • php >= 8.1
  • mysql 8
  • composer 2.5.1

Installation Guide

  1. Clone repository
  git clone https://github.com/tajul-saajan/fake-twitter-be.git
  1. Go to project directory
  cd fake-twitter-be 
  1. Setup .env file
cp .env.example .env
  1. Install dependencies
  composer install --ignore-platform-reqs 
  1. Build, migrate and seed
  php artisan key:generate 
  php artisan migrate 
  php artisan db:seed 
  1. Start the server
   php artisan serve

Running Tests

    php artisan test