├── .gitignore ├── README.md ├── database └── database.sql ├── package.json └── src ├── controllers └── index.controller.js ├── index.js └── routes └── index.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johncortes00/rest-api-nodejs-postgresql/HEAD/README.md -------------------------------------------------------------------------------- /database/database.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johncortes00/rest-api-nodejs-postgresql/HEAD/database/database.sql -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johncortes00/rest-api-nodejs-postgresql/HEAD/package.json -------------------------------------------------------------------------------- /src/controllers/index.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johncortes00/rest-api-nodejs-postgresql/HEAD/src/controllers/index.controller.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johncortes00/rest-api-nodejs-postgresql/HEAD/src/index.js -------------------------------------------------------------------------------- /src/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johncortes00/rest-api-nodejs-postgresql/HEAD/src/routes/index.js --------------------------------------------------------------------------------