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 :
@@ -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
+
+
+