├── .vscode └── launch.json ├── LICENSE ├── README.md └── project-1 ├── README.md ├── api ├── .editorconfig ├── .eslintrc.js ├── .gitignore ├── package-lock.json ├── package.json ├── server.js └── src │ ├── app.js │ ├── config │ └── database.js │ ├── controllers │ └── product.controller.js │ └── routes │ ├── index.js │ └── product.routes.js └── sql └── products.sql /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaucia86/nodejs-postgresql-azure/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaucia86/nodejs-postgresql-azure/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaucia86/nodejs-postgresql-azure/HEAD/README.md -------------------------------------------------------------------------------- /project-1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaucia86/nodejs-postgresql-azure/HEAD/project-1/README.md -------------------------------------------------------------------------------- /project-1/api/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaucia86/nodejs-postgresql-azure/HEAD/project-1/api/.editorconfig -------------------------------------------------------------------------------- /project-1/api/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaucia86/nodejs-postgresql-azure/HEAD/project-1/api/.eslintrc.js -------------------------------------------------------------------------------- /project-1/api/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaucia86/nodejs-postgresql-azure/HEAD/project-1/api/.gitignore -------------------------------------------------------------------------------- /project-1/api/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaucia86/nodejs-postgresql-azure/HEAD/project-1/api/package-lock.json -------------------------------------------------------------------------------- /project-1/api/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaucia86/nodejs-postgresql-azure/HEAD/project-1/api/package.json -------------------------------------------------------------------------------- /project-1/api/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaucia86/nodejs-postgresql-azure/HEAD/project-1/api/server.js -------------------------------------------------------------------------------- /project-1/api/src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaucia86/nodejs-postgresql-azure/HEAD/project-1/api/src/app.js -------------------------------------------------------------------------------- /project-1/api/src/config/database.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaucia86/nodejs-postgresql-azure/HEAD/project-1/api/src/config/database.js -------------------------------------------------------------------------------- /project-1/api/src/controllers/product.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaucia86/nodejs-postgresql-azure/HEAD/project-1/api/src/controllers/product.controller.js -------------------------------------------------------------------------------- /project-1/api/src/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaucia86/nodejs-postgresql-azure/HEAD/project-1/api/src/routes/index.js -------------------------------------------------------------------------------- /project-1/api/src/routes/product.routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaucia86/nodejs-postgresql-azure/HEAD/project-1/api/src/routes/product.routes.js -------------------------------------------------------------------------------- /project-1/sql/products.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaucia86/nodejs-postgresql-azure/HEAD/project-1/sql/products.sql --------------------------------------------------------------------------------