gitextract_7tenys2a/ ├── app.js ├── config/ │ └── pass.js ├── configuraçoesNecessarias.txt ├── helpautenticacao/ │ └── eBibliotecario.js ├── models/ │ ├── Comentario.js │ ├── Leitor.js │ └── Livro.js ├── package.json ├── public/ │ ├── css/ │ │ ├── bootstrap-grid.css │ │ ├── bootstrap-grid.rtl.css │ │ ├── bootstrap-reboot.css │ │ ├── bootstrap-reboot.rtl.css │ │ ├── bootstrap-utilities.css │ │ ├── bootstrap-utilities.rtl.css │ │ ├── bootstrap.css │ │ └── bootstrap.rtl.css │ ├── csslocal/ │ │ ├── all.css │ │ ├── body.css │ │ ├── home.css │ │ └── livro.css │ └── js/ │ ├── bootstrap.bundle.js │ ├── bootstrap.esm.js │ └── bootstrap.js ├── rotas/ │ ├── bibliotecario.js │ ├── leitor.js │ └── principal.js └── views/ ├── bibliotecario/ │ ├── comentarios.handlebars │ ├── index.handlebars │ ├── livro.handlebars │ └── livroeditar.handlebars ├── index.handlebars ├── layouts/ │ └── main.handlebars ├── leitor/ │ ├── cadastro.handlebars │ ├── listaLeitores.handlebars │ └── login.handlebars ├── listaLivros.handlebars ├── livro.handlebars └── partials/ ├── _msg.handlebars └── _navbar.handlebars