Skip to content

Commit df6f69f

Browse files
committed
Added: Adding Readme File
1 parent a7b332c commit df6f69f

File tree

2 files changed

+42
-1
lines changed

2 files changed

+42
-1
lines changed

.env.example

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,4 @@
1-
PORT=3000
1+
PORT=3000
2+
3+
# Database Variables
4+
DB_URI="mongodb://127.0.0.1:27017/TodoApp"

README.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# Web Based To-Do App
2+
A Web Based ToDo App With Many Feature For Learning Basic Web Servers Technologies
3+
4+
**[See Course Now](https://www.youtube.com/playlist?list=PLK-nIBEusayI2BvPEPDZLCUaXdEdDWW-q)**
5+
6+
## Prerequisites
7+
> This Application Depends On
8+
- NodeJS (Version Will be Found In **[Course](https://www.youtube.com/playlist?list=PLK-nIBEusayI2BvPEPDZLCUaXdEdDWW-q))**
9+
- MongoDB (Version Will be Found In **[Course](https://www.youtube.com/playlist?list=PLK-nIBEusayI2BvPEPDZLCUaXdEdDWW-q))**
10+
11+
## Installation
12+
13+
### Clone Repository
14+
15+
```sh
16+
$ git clone https://github.com/mix-code/nodejs-web-todo-app/
17+
18+
$ cd nodejs-web-todo-app
19+
```
20+
21+
### Install Dependencies
22+
23+
```sh
24+
$ npm install
25+
```
26+
27+
### Create .env File
28+
> Default Values Already Found in .env.example chang it if you want
29+
```sh
30+
$ cp .env.example .env
31+
```
32+
33+
### Run Server
34+
```sh
35+
$ npm run dev
36+
```
37+
38+
> ## Don't Forget Run Your MongoDB Server

0 commit comments

Comments
 (0)