Skip to content

Lodha Backend contains all the files and sources which will run on the server side. It is built using NodeJs, MongoDB, Express.js. It gives routing, controllers and services to be provided.

License

Notifications You must be signed in to change notification settings

Git-init-2022/lodha-backend

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

17 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

lodhameridian


LODHA-BACKEND

β—¦ Developed with the software and tools below.

JavaScript Nodemon MongoDB TypeScript JSON Express

GitHub license git-last-commit GitHub commit activity GitHub top language

πŸ“– Table of Contents


πŸ“‚ Repository Structure

└── lodha-backend/
    β”œβ”€β”€ app.js
    β”œβ”€β”€ config/
    β”‚   └── database.js
    β”œβ”€β”€ controllers/
    β”‚   β”œβ”€β”€ NotifyController.js
    β”‚   β”œβ”€β”€ complaintController.js
    β”‚   β”œβ”€β”€ documentController.js
    β”‚   β”œβ”€β”€ formController.js
    β”‚   β”œβ”€β”€ issueController.js
    β”‚   β”œβ”€β”€ logs/
    β”‚   β”‚   β”œβ”€β”€ complaint-issues.log.0
    β”‚   β”‚   β”œβ”€β”€ complaints.log.0
    β”‚   β”‚   β”œβ”€β”€ forms.log.0
    β”‚   β”‚   β”œβ”€β”€ meetings.log.0
    β”‚   β”‚   └── users.log.0
    β”‚   β”œβ”€β”€ meetingController.js
    β”‚   β”œβ”€β”€ resetPasswordController.js
    β”‚   β”œβ”€β”€ userController.js
    β”‚   └── userNotificationController.js
    β”œβ”€β”€ middleware/
    β”‚   β”œβ”€β”€ auth.js
    β”‚   β”œβ”€β”€ catchAsyncErrors.js
    β”‚   └── error.js
    β”œβ”€β”€ models/
    β”‚   β”œβ”€β”€ MeetingModel.js
    β”‚   β”œβ”€β”€ Notifications.js
    β”‚   β”œβ”€β”€ NotifyModel.js
    β”‚   β”œβ”€β”€ complaintModel.js
    β”‚   β”œβ”€β”€ documentModel.js
    β”‚   β”œβ”€β”€ formModel.js
    β”‚   β”œβ”€β”€ issueModel.js
    β”‚   β”œβ”€β”€ userModel.js
    β”‚   └── userNotification.js
    β”œβ”€β”€ package-lock.json
    β”œβ”€β”€ package.json
    β”œβ”€β”€ routes/
    β”‚   β”œβ”€β”€ complaintsRoute.js
    β”‚   β”œβ”€β”€ documentRoute.js
    β”‚   β”œβ”€β”€ formRoute.js
    β”‚   β”œβ”€β”€ issueRoute.js
    β”‚   β”œβ”€β”€ meetingRoute.js
    β”‚   β”œβ”€β”€ notificationRoute.js
    β”‚   β”œβ”€β”€ resetPasswordRoute.js
    β”‚   β”œβ”€β”€ userNotificationRoute.js
    β”‚   └── userRoute.js
    β”œβ”€β”€ server.js
    └── utils/
        β”œβ”€β”€ apifeatures.js
        β”œβ”€β”€ errorhandler.js
        β”œβ”€β”€ imageUpload.js
        β”œβ”€β”€ jwtToken.js
        └── sendEmail.js

βš™οΈ Modules

Root
File Summary
package-lock.json HTTPStatus Exception: 429
server.js HTTPStatus Exception: 429
package.json HTTPStatus Exception: 429
app.js HTTPStatus Exception: 429
Models
File Summary
complaintModel.js HTTPStatus Exception: 429
NotifyModel.js HTTPStatus Exception: 429
issueModel.js HTTPStatus Exception: 429
documentModel.js HTTPStatus Exception: 429
formModel.js HTTPStatus Exception: 429
Notifications.js HTTPStatus Exception: 429
userModel.js HTTPStatus Exception: 429
userNotification.js HTTPStatus Exception: 429
MeetingModel.js HTTPStatus Exception: 429
Config
File Summary
database.js HTTPStatus Exception: 429
Utils
File Summary
sendEmail.js HTTPStatus Exception: 429
errorhandler.js HTTPStatus Exception: 429
imageUpload.js HTTPStatus Exception: 429
apifeatures.js HTTPStatus Exception: 429
jwtToken.js HTTPStatus Exception: 429
Controllers
File Summary
NotifyController.js HTTPStatus Exception: 429
userController.js HTTPStatus Exception: 429
userNotificationController.js HTTPStatus Exception: 429
issueController.js HTTPStatus Exception: 429
meetingController.js HTTPStatus Exception: 429
documentController.js HTTPStatus Exception: 429
resetPasswordController.js HTTPStatus Exception: 429
complaintController.js HTTPStatus Exception: 429
formController.js HTTPStatus Exception: 429
Logs
File Summary
complaint-issues.log.0 HTTPStatus Exception: 429
complaints.log.0 HTTPStatus Exception: 429
meetings.log.0 HTTPStatus Exception: 429
users.log.0 HTTPStatus Exception: 429
forms.log.0 HTTPStatus Exception: 429
Middleware
File Summary
catchAsyncErrors.js HTTPStatus Exception: 429
auth.js HTTPStatus Exception: 429
error.js HTTPStatus Exception: 429
Routes
File Summary
notificationRoute.js HTTPStatus Exception: 429
meetingRoute.js HTTPStatus Exception: 429
formRoute.js HTTPStatus Exception: 429
userNotificationRoute.js HTTPStatus Exception: 429
resetPasswordRoute.js HTTPStatus Exception: 429
issueRoute.js HTTPStatus Exception: 429
complaintsRoute.js HTTPStatus Exception: 429
documentRoute.js HTTPStatus Exception: 429
userRoute.js HTTPStatus Exception: 429

πŸš€ Getting Started

πŸ”§ Installation

  1. Clone the lodha-backend repository:
git clone https://github.com/Git-init-2022/lodha-backend
  1. Change to the project directory:
cd lodha-backend
  1. Install the dependencies:
npm install

πŸ€– Running lodha-backend

node app.js

πŸ§ͺ Tests

npm test

🀝 Contributing

Contributions are welcome! Here are several ways you can contribute:

Contributing Guidelines

Click to expand
  1. Fork the Repository: Start by forking the project repository to your GitHub account.
  2. Clone Locally: Clone the forked repository to your local machine using a Git client.
    git clone <your-forked-repo-url>
  3. Create a New Branch: Always work on a new branch, giving it a descriptive name.
    git checkout -b new-feature-x
  4. Make Your Changes: Develop and test your changes locally.
  5. Commit Your Changes: Commit with a clear and concise message describing your updates.
    git commit -m 'Implemented new feature x.'
  6. Push to GitHub: Push the changes to your forked repository.
    git push origin new-feature-x
  7. Submit a Pull Request: Create a PR against the original project repository. Clearly describe the changes and their motivations.

Once your PR is reviewed and approved, it will be merged into the main branch.


πŸ“„ License

This project is protected under the SELECT-A-LICENSE License. For more details, refer to the LICENSE file.


πŸ‘ Acknowledgments

  • List any resources, contributors, inspiration, etc. here.

Return


About

Lodha Backend contains all the files and sources which will run on the server side. It is built using NodeJs, MongoDB, Express.js. It gives routing, controllers and services to be provided.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published