Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

edit readme.md #2

Open
wants to merge 10 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 15 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
<h1 align="center">Nge (Noob Edition)</h1>

<h1 align="center">Nge (Noob Edition)</h1>
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
<br>![alt text](https://miro.medium.com/max/1000/1*E8IgOSkMTpBRs0w0-Zsx2g.gif)

### Quick Start :
```shell
./nge install
Expand All @@ -17,3 +22,9 @@ open https://localhost:8000 in your favorite browser.
> Q : where is routes folder ?. <br>
> 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)
7 changes: 7 additions & 0 deletions nge
Original file line number Diff line number Diff line change
@@ -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
Expand Down