Skip to content

Latest commit

 

History

History
33 lines (27 loc) · 743 Bytes

README.md

File metadata and controls

33 lines (27 loc) · 743 Bytes

ssunivs-backend

Stacks

  • Express.js
  • Sequelize ORM
  • Node.js
  • jest, supertest

Project Structure

/src
├── __test__        # Test code
│   ├── api
│   ├── lib
│   ├── models
│   └── service
├── api             # controller layer
│   ├── admin
│   ├── auth
│   └── user
├── dto             # DTOs
├── exception       # custom exceptions
├── lib             # utility classes and functions
├── models          # sequelize orm models (data layers)
└── service         # Business logic (service layers)

API Documentation