From 3d1ad59dd0e1095f61843d8de6adc5a8ebd12473 Mon Sep 17 00:00:00 2001 From: Palak Sharma <87171452+Palaksharma23@users.noreply.github.com> Date: Wed, 12 Apr 2023 13:42:28 +0530 Subject: [PATCH] Update README.md --- README.md | 31 +++++++++++++++++++++++++++++-- 1 file changed, 29 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3f18cf7..2bcdb4e 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,6 @@ -
-moja global logo +Tourister logo

Tourister✈

@@ -36,6 +35,29 @@ This project consists of wide variety of advanced features: 2) Security Features such as Rate Limiting, Password Encryption, etc.
+## 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 + +

+mvc architecture +
+
+ @@ -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 ```
Home page of the website