{"id":19640915,"url":"https://github.com/williamkoller/tarvos","last_synced_at":"2026-04-13T03:02:10.547Z","repository":{"id":243126506,"uuid":"811547406","full_name":"williamkoller/tarvos","owner":"williamkoller","description":"Rest Api with Nestjs, Prisma, Docker and Jest","archived":false,"fork":false,"pushed_at":"2024-06-06T20:32:31.000Z","size":136,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-09T18:59:57.737Z","etag":null,"topics":["docker","docker-compose","nestjs","nodejs","postgresql","prisma","rest-api"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/williamkoller.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-06-06T20:09:10.000Z","updated_at":"2024-06-06T20:32:34.000Z","dependencies_parsed_at":"2024-06-06T22:10:09.129Z","dependency_job_id":null,"html_url":"https://github.com/williamkoller/tarvos","commit_stats":null,"previous_names":["williamkoller/tarvos"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/williamkoller%2Ftarvos","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/williamkoller%2Ftarvos/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/williamkoller%2Ftarvos/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/williamkoller%2Ftarvos/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/williamkoller","download_url":"https://codeload.github.com/williamkoller/tarvos/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":240947674,"owners_count":19883031,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["docker","docker-compose","nestjs","nodejs","postgresql","prisma","rest-api"],"created_at":"2024-11-11T14:07:09.088Z","updated_at":"2026-04-13T03:02:05.509Z","avatar_url":"https://github.com/williamkoller.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cimg src=\"https://d33wubrfki0l68.cloudfront.net/49c2be6f2607b5c12dd27f8ecc8521723447975d/f05c5/logo-small.cbbeba89.svg\" alt=\"Nestjs\" title=\"Nestjs\" height=\"120\" width=\"96\" align=\"right\"/\u003e\n\n# Tarvos\n\n## User\n\n- Add user\n\n`method: POST`\n\n```bash\nhttp://localhost:3002/users\n```\n\nBody:\n\n```json\n{\n  \"name\": \"John\",\n  \"surname\": \"Doe\",\n  \"age\": 34,\n  \"email\": \"johndoe@mail.com\",\n  \"password\": \"Q1w2e3r4t5y6u7i8o9\"\n}\n```\n\nResponse:\n\n```json\n{\n  \"id\": 5,\n  \"name\": \"John\",\n  \"surname\": \"Doe\",\n  \"age\": 34,\n  \"email\": \"johndoe@mail.com\",\n  \"password\": \"$2b$12$baVboKK4O9IqOOFvzaBS2OdI9GuxKecdG3dPnaVQanQKMEMJVVN0S\",\n  \"createdAt\": \"2024-06-06T20:07:08.847Z\",\n  \"updatedAt\": \"2024-06-06T20:07:08.847Z\"\n}\n```\n\n- Load all users with filters\n\nWith filter:\n\n`method: GET`\n\n```bash\nhttp://localhost:3002/users?name=jo\n```\n\nResponse:\n\n```json\n[\n  {\n    \"id\": 5,\n    \"name\": \"John\",\n    \"surname\": \"Doe\",\n    \"age\": 34,\n    \"email\": \"johndoe@mail.com\",\n    \"password\": \"$2b$12$baVboKK4O9IqOOFvzaBS2OdI9GuxKecdG3dPnaVQanQKMEMJVVN0S\",\n    \"createdAt\": \"2024-06-06T20:07:08.847Z\",\n    \"updatedAt\": \"2024-06-06T20:07:08.847Z\",\n    \"posts\": []\n  }\n]\n```\n\nWithout filter:\n\n`method: GET`\n\n```bash\nhttp://localhost:3002/users\n```\n\nResponse:\n\n```json\n[\n  {\n    \"id\": 1,\n    \"name\": \"William\",\n    \"surname\": \"Koller\",\n    \"age\": 34,\n    \"email\": \"william.koller@icloud.com\",\n    \"password\": \"$2b$12$oU5pREvVt9nt3ilfuaTuuunz.YQVX3n7b5eaj7hy.HkcIef2KVWwS\",\n    \"createdAt\": \"2024-06-06T19:52:36.093Z\",\n    \"updatedAt\": \"2024-06-06T19:52:36.093Z\",\n    \"posts\": []\n  },\n  {\n    \"id\": 4,\n    \"name\": \"William\",\n    \"surname\": \"Koller 1\",\n    \"age\": 34,\n    \"email\": \"william.koller1@icloud.com\",\n    \"password\": \"$2b$12$NYpg9X2WWvE9SQxyXLyf2O6GkHMATt88wer9m2s1.ey3o/PH1ZdeW\",\n    \"createdAt\": \"2024-06-06T20:06:36.090Z\",\n    \"updatedAt\": \"2024-06-06T20:06:36.090Z\",\n    \"posts\": []\n  },\n  {\n    \"id\": 5,\n    \"name\": \"John\",\n    \"surname\": \"Doe\",\n    \"age\": 34,\n    \"email\": \"johndoe@mail.com\",\n    \"password\": \"$2b$12$baVboKK4O9IqOOFvzaBS2OdI9GuxKecdG3dPnaVQanQKMEMJVVN0S\",\n    \"createdAt\": \"2024-06-06T20:07:08.847Z\",\n    \"updatedAt\": \"2024-06-06T20:07:08.847Z\",\n    \"posts\": []\n  }\n]\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwilliamkoller%2Ftarvos","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwilliamkoller%2Ftarvos","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwilliamkoller%2Ftarvos/lists"}