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 +![GitHub contributors](https://img.shields.io/github/contributors/digital-entropy/nge.noob) +![Visitor](https://visitor-badge.laobi.icu/badge?page_id=digital-entropy.nge.noob) +[![GitHub forks](https://badgen.net/github/forks/digital-entropy/nge.noob/)](https://github.com/digital-entropy/nge.noob/network/) +[![GitHub commits](https://badgen.net/github/commits/digital-entropy/nge.noob/)](hhttps://github.com/digital-entropy/nge.noob/commits/) +### Requirements : + - Docker +
![alt text](https://miro.medium.com/max/1000/1*E8IgOSkMTpBRs0w0-Zsx2g.gif) + ### 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 + +![Laravel](https://img.shields.io/badge/laravel-%23FF2D20.svg?style=for-the-badge&logo=laravel&logoColor=white) +![Postgres](https://img.shields.io/badge/postgres-%23316192.svg?style=for-the-badge&logo=postgresql&logoColor=white) +![Vue.js](https://img.shields.io/badge/vuejs-%2335495e.svg?style=for-the-badge&logo=vuedotjs&logoColor=%234FC08D) +![TailwindCSS](https://img.shields.io/badge/tailwindcss-%2338B2AC.svg?style=for-the-badge&logo=tailwind-css&logoColor=white) +![Redis](https://img.shields.io/badge/redis-%23DD0031.svg?style=for-the-badge&logo=redis&logoColor=white) \ 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