├── .env-example ├── .gitignore ├── README.md ├── app.ts ├── config └── db.config.ts ├── controller └── task.controller.ts ├── index.ts ├── logger └── api.logger.ts ├── model └── task.model.ts ├── nodemon.json ├── package.json ├── repository └── task.repository.ts ├── service └── task.service.ts ├── swagger ├── swagger.css └── swagger.json ├── tsconfig.json └── webpack.config.ts /.env-example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbachi/nodejs-restapi-postgresql-ts/HEAD/.env-example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbachi/nodejs-restapi-postgresql-ts/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbachi/nodejs-restapi-postgresql-ts/HEAD/README.md -------------------------------------------------------------------------------- /app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbachi/nodejs-restapi-postgresql-ts/HEAD/app.ts -------------------------------------------------------------------------------- /config/db.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbachi/nodejs-restapi-postgresql-ts/HEAD/config/db.config.ts -------------------------------------------------------------------------------- /controller/task.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbachi/nodejs-restapi-postgresql-ts/HEAD/controller/task.controller.ts -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbachi/nodejs-restapi-postgresql-ts/HEAD/index.ts -------------------------------------------------------------------------------- /logger/api.logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbachi/nodejs-restapi-postgresql-ts/HEAD/logger/api.logger.ts -------------------------------------------------------------------------------- /model/task.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbachi/nodejs-restapi-postgresql-ts/HEAD/model/task.model.ts -------------------------------------------------------------------------------- /nodemon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbachi/nodejs-restapi-postgresql-ts/HEAD/nodemon.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbachi/nodejs-restapi-postgresql-ts/HEAD/package.json -------------------------------------------------------------------------------- /repository/task.repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbachi/nodejs-restapi-postgresql-ts/HEAD/repository/task.repository.ts -------------------------------------------------------------------------------- /service/task.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbachi/nodejs-restapi-postgresql-ts/HEAD/service/task.service.ts -------------------------------------------------------------------------------- /swagger/swagger.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbachi/nodejs-restapi-postgresql-ts/HEAD/swagger/swagger.css -------------------------------------------------------------------------------- /swagger/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbachi/nodejs-restapi-postgresql-ts/HEAD/swagger/swagger.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbachi/nodejs-restapi-postgresql-ts/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbachi/nodejs-restapi-postgresql-ts/HEAD/webpack.config.ts --------------------------------------------------------------------------------