Mini Reddit Application Built w/ Laravel.
Clone the project using SSH or HTTPS.
git@github.com:yuvraj-timalsina/mini-reddit.git
Go to the Project Directory
cd mini-reddit
Create .env in root directory
cp .env.example .env
sudo mysql -u <username> -p
create database mini_reddit;
Add Database credentials in .env
DB_DATABASE=mini_reddit
DB_USERNAME=<username>
DB_PASSWORD=<password>
composer install
Generate Application Key
php artisan key:generate
Run the Database Migrations
php artisan migrate
php artisan serve