diff --git a/README.md b/README.md
index 5a5dc07c394..0805dec4d2f 100644
--- a/README.md
+++ b/README.md
@@ -1,10 +1,15 @@
-
Nge (Noob Edition)
-
+Nge (Noob Edition)
Laravel project customized stack by DigitalEntropy.
-### Requirements :
- - Docker
+
+
+[](https://github.com/digital-entropy/nge.noob/network/)
+[](hhttps://github.com/digital-entropy/nge.noob/commits/)
+### Requirements :
+ - Docker
+

+
### Quick Start :
```shell
./nge install
@@ -17,3 +22,9 @@ open https://localhost:8000 in your favorite browser.
> Q : where is routes folder ?.
> A : we replace default laravel router with our custom route [here](https://github.com/digital-entropy/yalr).
> you can see all the routes in config/routes.php
+
+
+
+
+
+
\ No newline at end of file
diff --git a/nge b/nge
index cb80e19a2c4..0b44b920528 100755
--- a/nge
+++ b/nge
@@ -1,3 +1,10 @@
+# check .env file if exist and not exist
+if [ ! -f .env ]; then
+ cp .env.example .env
+else
+ echo "File .env Exist"
+fi
+
#!/bin/bash
set -Eeo pipefail
set -o errexit # Used to exit upon error, avoiding cascading errors