{"id":19484053,"url":"https://github.com/renanrudney/roomeo_server","last_synced_at":"2026-05-17T05:35:52.148Z","repository":{"id":92518848,"uuid":"290649191","full_name":"renanrudney/roomeo_server","owner":"renanrudney","description":"A fictional 'video server' to manage conference rooms!","archived":false,"fork":false,"pushed_at":"2020-08-30T22:03:07.000Z","size":343,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-02-25T17:48:03.767Z","etag":null,"topics":["clean-architecture","dto","infra","node","node-js","nodejs","repositories","services","tdd","tdd-javascript","typeorm","typescript"],"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/renanrudney.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":"2020-08-27T01:59:23.000Z","updated_at":"2022-04-09T23:02:49.000Z","dependencies_parsed_at":null,"dependency_job_id":"d153c549-c753-4444-965d-ed3d92f2aa17","html_url":"https://github.com/renanrudney/roomeo_server","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/renanrudney/roomeo_server","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/renanrudney%2Froomeo_server","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/renanrudney%2Froomeo_server/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/renanrudney%2Froomeo_server/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/renanrudney%2Froomeo_server/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/renanrudney","download_url":"https://codeload.github.com/renanrudney/roomeo_server/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/renanrudney%2Froomeo_server/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33128662,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-16T18:38:32.183Z","status":"online","status_checked_at":"2026-05-17T02:00:05.366Z","response_time":107,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["clean-architecture","dto","infra","node","node-js","nodejs","repositories","services","tdd","tdd-javascript","typeorm","typescript"],"created_at":"2024-11-10T20:19:03.457Z","updated_at":"2026-05-17T05:35:52.117Z","avatar_url":"https://github.com/renanrudney.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n\u003cp align=\"center\"\u003e\n  \u003cimg alt=\"Unsplash black shoulder-mount\" src=\"https://images.unsplash.com/photo-1543235074-4768b5c2233c?ixlib=rb-1.2.1\u0026ixid=eyJhcHBfaWQiOjEyMDd9\u0026auto=format\u0026fit=crop\u0026w=350\u0026q=80\" /\u003e\n\u003c/p\u003e\n\n\u003ch3 align=\"center\"\u003e\n  Room + Video = Roomeo\n\u003c/h3\u003e\n\n\u003cp align=\"center\"\u003e“A fictional video server”!\u003c/blockquote\u003e\n\u003cp align=\"center\"\u003eYou can manage users and conference rooms.\u003c/p\u003e\n\u003cp align=\"center\"\u003eDDD, TDD, SOLID? Humm, is cheap ? Show me the code!\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n  \u003cimg alt=\"GitHub repo size\" src=\"https://img.shields.io/github/repo-size/renanrudney/roomeo_server\"\u003e\n  \u003cimg alt=\"GitHub contributors\" src=\"https://img.shields.io/github/contributors/renanrudney/roomeo_server\"\u003e\n\u003c/p\u003e\n\n## Prerequisites\n\nBefore you begin, ensure you have met the following requirements:\n* You have installed the 12.x version of [NodeJS](https://nodejs.org/en/download/)\n* You have a [Yarn](https://classic.yarnpkg.com/en/docs/install) 1.x version  or NPM.\n* You have created psql databases: roomeo_pg, roomeo_test\n* **or** run docker and create databases: roomeo_pg, roomeo_test\n```❯ docker run --name roomeo_pg -e POSTGRES_PASSWORD=docker -p 5432:5432 -d postgres```\n\n## Installing Project\n\nTo install dependencies, run:\n\n```\nyarn install\nyarn typeorm migration:run\n```\n\n## Using Project\n\nTo use, follow these steps:\n\n```\nyarn dev:server\n```\n\nOr run tests:\n```\nyarn test\n```\n\n### Aplication Routes\nIf you want to test on insomnia, postman or similar: [Import this json](./roomeo_api_routes.json).\n\n- **`GET /users`** : list all users;\n- **`GET /users/:username`** : user information;\n- **`POST /users`** { `username`, `password`, `mobile_token`} : create and authenticate a user;\n- **`POST /authenticate`** { `username`, `password` } : authenticate user;\n- **`PUT /users`** { `mobile_token`, `password` } : update current authenticated user;\n- **`DELETE /users`** : deleted current authenticated user;\n- **`POST /rooms`** { `name`, `capacity` } : create and host a room;\n- **`GET /rooms/:guid`** : room information;\n- **`POST /rooms/:guid/join`** : joins room and show room information;\n- **`POST /rooms/:guid/leave`** : leaves room;\n- **`PATCH /rooms/:guid`** : change room host;\n- **`GET /rooms/?username=:username`** : list of rooms that the user is in;\n\n\n## Contributing\nTo contribute to \"roomeo_server\", follow these steps:\n\n1. Fork this repository.\n2. Create a branch: `git checkout -b \u003cbranch_name\u003e`.\n3. Make your changes and commit them: `git commit -m '\u003ccommit_message\u003e'`\n4. Push to the original branch: `git push origin \u003cproject_name\u003e/\u003clocation\u003e`\n5. Create the pull request.\n\nAlternatively see the GitHub documentation on [creating a pull request](https://help.github.com/en/github/collaborating-with-issues-and-pull-requests/creating-a-pull-request).\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frenanrudney%2Froomeo_server","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frenanrudney%2Froomeo_server","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frenanrudney%2Froomeo_server/lists"}