├── .dockerignore ├── .env.example ├── .gitignore ├── .sequelizerc ├── DOCKER.md ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── app.js ├── bin └── www ├── config ├── config.example.json └── config.js ├── controllers ├── health_controller.js ├── inbox_controller.js ├── organization_controller.js ├── task_controller.js └── user_controller.js ├── docker-compose.override.yml ├── docker-compose.prod.yml ├── docker-compose.yml ├── init-db └── 01-init.sql ├── migrations ├── 20210209165039-create-organization.js ├── 20210209173430-create-user.js ├── 20210219183452-create-task.js ├── 20211004175156-create-inbox.js ├── 20211004175258-create-comment.js └── 20211004175556-create-inbox-comment.js ├── models ├── comment.js ├── inbox.js ├── inbox_comment.js ├── index.js ├── organization.js ├── task.js └── user.js ├── package.json ├── routes └── all_routes.js ├── seeders └── 20210209165619-organization.js ├── services └── file_upload_service.js ├── tasky_webservice.iml ├── utils └── utils.js └── yarn.lock /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamEtornam/TaskyBackendService/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamEtornam/TaskyBackendService/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamEtornam/TaskyBackendService/HEAD/.gitignore -------------------------------------------------------------------------------- /.sequelizerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamEtornam/TaskyBackendService/HEAD/.sequelizerc -------------------------------------------------------------------------------- /DOCKER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamEtornam/TaskyBackendService/HEAD/DOCKER.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamEtornam/TaskyBackendService/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamEtornam/TaskyBackendService/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamEtornam/TaskyBackendService/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamEtornam/TaskyBackendService/HEAD/README.md -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamEtornam/TaskyBackendService/HEAD/app.js -------------------------------------------------------------------------------- /bin/www: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamEtornam/TaskyBackendService/HEAD/bin/www -------------------------------------------------------------------------------- /config/config.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamEtornam/TaskyBackendService/HEAD/config/config.example.json -------------------------------------------------------------------------------- /config/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamEtornam/TaskyBackendService/HEAD/config/config.js -------------------------------------------------------------------------------- /controllers/health_controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamEtornam/TaskyBackendService/HEAD/controllers/health_controller.js -------------------------------------------------------------------------------- /controllers/inbox_controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamEtornam/TaskyBackendService/HEAD/controllers/inbox_controller.js -------------------------------------------------------------------------------- /controllers/organization_controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamEtornam/TaskyBackendService/HEAD/controllers/organization_controller.js -------------------------------------------------------------------------------- /controllers/task_controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamEtornam/TaskyBackendService/HEAD/controllers/task_controller.js -------------------------------------------------------------------------------- /controllers/user_controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamEtornam/TaskyBackendService/HEAD/controllers/user_controller.js -------------------------------------------------------------------------------- /docker-compose.override.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamEtornam/TaskyBackendService/HEAD/docker-compose.override.yml -------------------------------------------------------------------------------- /docker-compose.prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamEtornam/TaskyBackendService/HEAD/docker-compose.prod.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamEtornam/TaskyBackendService/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /init-db/01-init.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamEtornam/TaskyBackendService/HEAD/init-db/01-init.sql -------------------------------------------------------------------------------- /migrations/20210209165039-create-organization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamEtornam/TaskyBackendService/HEAD/migrations/20210209165039-create-organization.js -------------------------------------------------------------------------------- /migrations/20210209173430-create-user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamEtornam/TaskyBackendService/HEAD/migrations/20210209173430-create-user.js -------------------------------------------------------------------------------- /migrations/20210219183452-create-task.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamEtornam/TaskyBackendService/HEAD/migrations/20210219183452-create-task.js -------------------------------------------------------------------------------- /migrations/20211004175156-create-inbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamEtornam/TaskyBackendService/HEAD/migrations/20211004175156-create-inbox.js -------------------------------------------------------------------------------- /migrations/20211004175258-create-comment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamEtornam/TaskyBackendService/HEAD/migrations/20211004175258-create-comment.js -------------------------------------------------------------------------------- /migrations/20211004175556-create-inbox-comment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamEtornam/TaskyBackendService/HEAD/migrations/20211004175556-create-inbox-comment.js -------------------------------------------------------------------------------- /models/comment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamEtornam/TaskyBackendService/HEAD/models/comment.js -------------------------------------------------------------------------------- /models/inbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamEtornam/TaskyBackendService/HEAD/models/inbox.js -------------------------------------------------------------------------------- /models/inbox_comment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamEtornam/TaskyBackendService/HEAD/models/inbox_comment.js -------------------------------------------------------------------------------- /models/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamEtornam/TaskyBackendService/HEAD/models/index.js -------------------------------------------------------------------------------- /models/organization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamEtornam/TaskyBackendService/HEAD/models/organization.js -------------------------------------------------------------------------------- /models/task.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamEtornam/TaskyBackendService/HEAD/models/task.js -------------------------------------------------------------------------------- /models/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamEtornam/TaskyBackendService/HEAD/models/user.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamEtornam/TaskyBackendService/HEAD/package.json -------------------------------------------------------------------------------- /routes/all_routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamEtornam/TaskyBackendService/HEAD/routes/all_routes.js -------------------------------------------------------------------------------- /seeders/20210209165619-organization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamEtornam/TaskyBackendService/HEAD/seeders/20210209165619-organization.js -------------------------------------------------------------------------------- /services/file_upload_service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamEtornam/TaskyBackendService/HEAD/services/file_upload_service.js -------------------------------------------------------------------------------- /tasky_webservice.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamEtornam/TaskyBackendService/HEAD/tasky_webservice.iml -------------------------------------------------------------------------------- /utils/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamEtornam/TaskyBackendService/HEAD/utils/utils.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamEtornam/TaskyBackendService/HEAD/yarn.lock --------------------------------------------------------------------------------