Skip to content

Repository concerning a school registry following the RESTful API model. It has been developed for the Software Engineering 2 course of the bachelor's degree in Computer Science at University of Trento

Notifications You must be signed in to change notification settings

samuelebortolotti/school-registry-web-app

 
 

Repository files navigation

projectSe2group06

Deploy & Tests

Get started with projectSe2group06

Clone the repository on your machine

git clone https://github.com/Simone-Alghisi/projectSe2group06.git

Move inside the projectSe2group06 folder

cd projectSe2group06

Install npm dependencies and transpile the TypeScript code

npm install

Create the .env containing the environment variables defined in the .env.sample file.

An example of the file is the following

PORT=8080
MONGODB_URI=mongodb://[username:password@]127.0.0.1:27017/db
MONGODB_TEST_URI=mongodb://[test_username:test_password@]127.0.0.1:27017/db_test
JWT_SECRET=<jwt access token secret>
JWT_REFRESH_SECRET=<jwt refresh token secret>

Run the application

Run the following command inside the projectSe2group06 folder

npm run start

Test

Tests are implemented using Mocha test framework.

Notice that, at the moment, tests will affect the database specified by the MONGODB_URI contained in the .env file

They can be run using the following command

npm run test

Typedoc

If you have not done it yet, install npm dependecies

npm install

Generate the documentation

npm run typedoc

The documentation will be available in the doc folder generated by Typedoc.

Project structure

projectSe2group06
├── lib
│   ├── app.ts
│   ├── common
│   │   ├── interfaces
│   │   │   ├── configureRoutes.interface.ts
│   │   │   ├── crudController.interface.ts
│   │   │   └── crudService.interface.ts
│   │   ├── middlewares
│   │   │   └── common.middleware.ts
│   │   ├── models
│   │   │   └── common.model.ts
│   │   ├── routes
│   │   │   └── common.routes.ts
│   │   └── services
│   │       └── mongoose.service.ts
│   ├── controllers
│   │   ├── class.controller.ts
│   │   ├── communication.controller.ts
│   │   ├── grade.controller.ts
│   │   ├── login.controller.ts
│   │   ├── user.controller.ts
│   │   └── yourself.controller.ts
│   ├── middlewares
│   │   ├── class.middleware.ts
│   │   ├── communication.middleware.ts
│   │   ├── grade.middleware.ts
│   │   ├── jwt.middleware.ts
│   │   ├── login.middleware.ts
│   │   └── user.middleware.ts
│   ├── models
│   │   ├── class.model.ts
│   │   └── user.model.ts
│   ├── routes
│   │   ├── class.route.ts
│   │   ├── communication.route.ts
│   │   ├── grade.route.ts
│   │   ├── login.route.ts
│   │   ├── user.route.ts
│   │   └── yourself.route.ts
│   └── services
│       ├── class.service.ts
│       ├── communication.service.ts
│       ├── grade.service.ts
│       ├── user.service.ts
│       └── yourself.service.ts
├── oas3.yaml
├── package-lock.json
├── package.json
├── Procfile
├── public
│   ├── classes.html
│   ├── communications.html
│   ├── communicationsProfessor.html
│   ├── communicationsStudent.html
│   ├── css
│   │   └── style.css
│   ├── editClass.html
│   ├── editUser.html
│   ├── forbidden.html
│   ├── grades.html
│   ├── gradesStudent.html
│   ├── home.html
│   ├── homeProfessor.html
│   ├── homeStudent.html
│   ├── index.html
│   ├── insertClass.html
│   ├── insertCommunications.html
│   ├── insertGrades.html
│   ├── insertUser.html
│   ├── js
│   │   ├── classes.js
│   │   ├── common.js
│   │   ├── commonProfessor.js
│   │   ├── commonStudent.js
│   │   ├── communications.js
│   │   ├── communicationsProfessor.js
│   │   ├── communicationsStudent.js
│   │   ├── deleteClass.js
│   │   ├── deleteUser.js
│   │   ├── editClass.js
│   │   ├── editGrade.js
│   │   ├── editUser.js
│   │   ├── grades.js
│   │   ├── gradesStudent.js
│   │   ├── homeProfessor.js
│   │   ├── index.js
│   │   ├── insertClass.js
│   │   ├── insertCommunications.js
│   │   ├── insertGrades.js
│   │   ├── insertUser.js
│   │   ├── main.js
│   │   ├── plugins
│   │   │   └── datatables.js
│   │   ├── users.js
│   │   ├── viewCommunication.js
│   │   ├── viewCommunicationProfessor.js
│   │   └── viewCommunicationStudent.js
│   ├── serverError.html
│   ├── users.html
│   ├── viewCommunication.html
│   ├── viewCommunicationProfessor.html
│   └── viewCommunicationStudent.html
├── README.md
├── spec
│   ├── app.spec.ts
│   ├── common
│   │   └── routes
│   │       └── common.routes.spec.ts
│   ├── controllers
│   │   ├── class.controller.spec.ts
│   │   ├── communication.controller.spec.ts
│   │   ├── grade.controller.spec.ts
│   │   ├── login.controller.spec.ts
│   │   └── user.controller.spec.ts
│   ├── models
│   │   ├── class.model.spec.ts
│   │   └── user.model.spec.ts
│   ├── routes
│   │   ├── communication.route.spec.ts
│   │   ├── grade.route.spec.ts
│   │   ├── login.route.spec.ts
│   │   └── user.route.spec.ts
│   └── spec_helper.ts
└── tsconfig.json

Team

Name Surname Github
Emanuele Beozzo emanuelebeozzo
Massimo Rizzoli massimo-rizzoli
Samuele Bortolotti samuelebortolotti
Simone Alghisi Simone-Alghisi

About

Repository concerning a school registry following the RESTful API model. It has been developed for the Software Engineering 2 course of the bachelor's degree in Computer Science at University of Trento

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 32.5%
  • HTML 30.0%
  • CSS 27.1%
  • JavaScript 10.4%