File tree Expand file tree Collapse file tree 2 files changed +42
-1
lines changed Expand file tree Collapse file tree 2 files changed +42
-1
lines changed Original file line number Diff line number Diff line change 1- PORT = 3000
1+ PORT = 3000
2+
3+ # Database Variables
4+ DB_URI = " mongodb://127.0.0.1:27017/TodoApp"
Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments