From 4a822b826fecbcf970fae1afc9d289605cd0a7ca Mon Sep 17 00:00:00 2001 From: Htet Phone Aung Date: Wed, 20 Dec 2023 17:51:36 +0630 Subject: [PATCH] Update README.md --- README.md | 32 +++++++++++++++++++++++++++++++- 1 file changed, 31 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 5acf93e..8fd88bb 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # MangaDex - Your Comic/Manga Books Website -## A thorough showcase +## A Sneak-Peek showcase * HomePage : Home @@ -33,6 +33,36 @@ You can check the lists of dependencies in the *composer.json* and *package.json * I used **Laravel Breeze** for *Frontend scaffolding* * The whole design is structed by **Bootstrap** * and rendered by **vite.js** +
+
+ +> [!TIP] +> For those who wanna clone repo and run the app - A step by step setup Manual +### Follow the steps down below + +* First clone the repo down + `git clone repo-url` + +* Install Composer packages & NPM Packages + `composer install` + `npm i` + +* Set up .env file - Copy the .env.example file and change the name to .env + `cp .env.example .env` +> in the .env file, set up the database + +* Generate a new key for the app + `php artisan key:generate` + +* Run the migrations + `php artisan migrate` + +* Final Step - Run the app + `npm run dev` for asset bundling & + `php artisan serve` for localhost + + +