Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Palaksharma23 authored Apr 12, 2023
1 parent f54801a commit 3d1ad59
Showing 1 changed file with 29 additions and 2 deletions.
31 changes: 29 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@

ο»Ώ
<div align="center">
<img src="https://i.ibb.co/pWPRk2n/Tourister.jpg" alt="moja global logo" height ="auto" width="400" />
<img src="https://i.ibb.co/pWPRk2n/Tourister.jpg" alt="Tourister logo" height ="auto" width="400" />
<br>
<h1>Tourister✈</h1>
<p>
Expand Down Expand Up @@ -36,6 +35,29 @@ This project consists of wide variety of advanced features:
2) Security Features such as Rate Limiting, Password Encryption, etc.
<br>

## Top-level directory structure

.
β”œβ”€β”€ controllers # This folder contains the controllers of the application. These controllers handle incoming requests from clients, interact with the model to retrieve or update data, and send responses back to the client.
β”œβ”€β”€ models # This folder handles the data and manages the schema of the data to be stored in the database.
β”œβ”€β”€ public # This folder handles images, JavaScript, and CSS that are related to the website and can be accessed by the client.
β”œβ”€β”€ Routes # This folder handles the routes of the application, determining what actions need to be performed for specific routes.
β”œβ”€β”€ utils # This folder manages the utility files that contain classes used throughout the website.
β”œβ”€β”€ views # This folder manages the templates used to generate the view of the website.
β”œβ”€β”€ .eslintrc.json
β”œβ”€β”€ .gitignore
β”œβ”€β”€ .prettierrc
β”œβ”€β”€ app.js
β”œβ”€β”€ package-lock.json
β”œβ”€β”€ package.json
β”œβ”€β”€ README.md
└── server.js

<div align="center">
<img src="https://i.ibb.co/BK8KLHM/MVC-Architecture.jpg" alt="mvc architecture" height="400"/>
</div>
<br/>

<table>
<tr>
<td>Home page of the website</td>
Expand Down Expand Up @@ -117,6 +139,11 @@ To start the server in development mode
npm run dev
```

For monitoring changes in the development mode, create a new terminal and run the following command in the directory
```
npm run watch:js
```

To start the server in production mode

```
Expand Down

0 comments on commit 3d1ad59

Please sign in to comment.