{"id":16447581,"url":"https://github.com/preciousakams/hotel-room","last_synced_at":"2025-10-06T21:04:47.560Z","repository":{"id":60490081,"uuid":"543315789","full_name":"preciousakams/Hotel-Room","owner":"preciousakams","description":"SuiteUp is a simulation of a hotel room reservation system. It enables users to make room reservations. It also allows users to see all of their reservations in a list format, delete a room only if it is empty, and all visitors can see unreserved rooms. ","archived":false,"fork":false,"pushed_at":"2022-12-14T17:20:42.000Z","size":102,"stargazers_count":2,"open_issues_count":0,"forks_count":3,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-27T06:34:59.814Z","etag":null,"topics":["rails","ruby"],"latest_commit_sha":null,"homepage":"","language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/preciousakams.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}},"created_at":"2022-09-29T20:54:01.000Z","updated_at":"2022-10-28T08:59:30.000Z","dependencies_parsed_at":"2023-01-29T00:15:26.431Z","dependency_job_id":null,"html_url":"https://github.com/preciousakams/Hotel-Room","commit_stats":null,"previous_names":["preciousakams/hotel-room","kamzzy/hotel-room"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/preciousakams/Hotel-Room","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/preciousakams%2FHotel-Room","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/preciousakams%2FHotel-Room/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/preciousakams%2FHotel-Room/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/preciousakams%2FHotel-Room/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/preciousakams","download_url":"https://codeload.github.com/preciousakams/Hotel-Room/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/preciousakams%2FHotel-Room/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278679359,"owners_count":26027055,"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","status":"online","status_checked_at":"2025-10-06T02:00:05.630Z","response_time":65,"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":["rails","ruby"],"created_at":"2024-10-11T09:51:05.228Z","updated_at":"2025-10-06T21:04:47.543Z","avatar_url":"https://github.com/preciousakams.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n\n## SuiteUp\n\n\u003e SuiteUp is a simulation of a hotel room reservation system.\nIt enables users to make room reservations.\nIt also allows users to see all of their reservations in a list format, delete a room only if it is empty, and all visitors can see unreserved rooms. You can check the source code for frontend [here](https://github.com/felixodette/hotel-room-frontend).\n\n\n\n![Screen Shot 2022-10-12 at 3 25 17 PM](https://user-images.githubusercontent.com/25887253/195348197-e5130420-081e-409f-ae56-7b48d72e00c4.png)\n\n## Backend Schema\n![hotel_schema](https://user-images.githubusercontent.com/25887253/195716717-f4418b7c-9b82-4899-909a-11223c66b065.png)\n\n## Live Demo\n- [Front End](https://hotel-room-frontend.vercel.app/) \n- [Back End API](https://afternoon-fjord-27064.herokuapp.com/)\n\n## Built With\n\n### Backend\n\n- [x] Programming Language: [Ruby](https://www.ruby-lang.org/en/)\n- [x] Framework: [Ruby on Rails](https://rubyonrails.org/)\n- [x] Linter: [Rubocop](https://rubocop.org/)\n- [x] Code Editor: [VS Code](https://code.visualstudio.com/)\n- [x] Database: [PostgreSQL](https://www.postgresql.org/)\n- [x] Testing Framework: [RSpec](https://rspec.info/)\n- [x] API Documentation: [Swagger](https://swagger.io/)\n\n### Frontend\n\n- [x] Programming Language: [JavaScript](https://www.javascript.com/)\n- [x] Framework: [React](https://reactjs.org/)\n- [x] Library: [Redux](https://redux.js.org/)\n- [x] Linter: [ESLint](https://eslint.org/)\n- [x] Code Editor: [VS Code](https://code.visualstudio.com/)\n- [x] Testing Framework: [Jest](https://jestjs.io/)\n\n## Getting Started\n\nTo get a local copy up and running follow these simple example steps.\n\n### Install\n\nIn the terminal, go to your file directory and run this command.\n\n```\n$ git clone https://github.com/kamzzy/Hotel-Room.git\n```\n\n### Usage\n\nGo to the app directory\n```\n$ cd Hotel-Room\n```\n\nRun the server\n```\n$ rails server\n```\n\nYou can check the linter issues and fix them\n```\n$ rubocop -A\n```\n\n### Setup\n\nInstall Gems\n```\n$ bundle install\n```\n\nCreate the database\n```\n$ rails db:create\n```\n\nMigrate database schema\n```\n$ rails db:migrate\n```\n\nSeed the database\n```\n$ rails db:seed\n```\n\n### Run tests\n\nTo install rspec, in the terminal kindly run this command\n\n```\n$ gem install rspec\n```\n\nTo run tests, please run this command\n```\n$ rspec ./spec/#{filename}_spec.rb\n```\n\n### API Documentation\n\nYou can find the API documentation by\n\n```\n$ rails server\n```\n\nThen go to this link: [http://localhost:3000/api-docs/index.html](http://localhost:3000/api-docs/index.html)\n\n### Prerequisites\n\n- [x] A web browser like [Google Chrome](https://www.google.com/chrome/).\n- [x] A code editor like [Visual Studio Code](https://code.visualstudio.com/).\n- [x] A terminal to run the code.\n- [x] [Ruby](https://www.ruby-lang.org/en/) installed on your computer.\n- [x] [Rails](https://rubyonrails.org/) installed on your computer.\n\nYou can check if Git is installed by running the following command in the terminal.\n```\n$ git --version\n```\n\nLikewise for Ruby installation.\n```\n$ ruby --version \u0026\u0026 irb\n```\n\nTo install rails, in the terminal kindly run this command\n```\n$ gem install rails\n```\n## Authors\n\n👤 **Ahmad Zamir Yousufi** \u003cimg src=\"https://emojis.slackmojis.com/emojis/images/1531849430/4246/blob-sunglasses.gif?1531849430\" width=\"20\"/\u003e\n\n- GitHub: [@ahzamir](https://github.com/ahzamir).\n- Twitter: [@YousufiZamir](https://twitter.com/YousufiZamir)\n- LinkedIn: [ahzamir](https://www.linkedin.com/in/ahzamir/)\n\n👤 **Huseyin Biyik** \u003cimg src=\"https://emojis.slackmojis.com/emojis/images/1531849430/4246/blob-sunglasses.gif?1531849430\" width=\"20\"/\u003e\n\n- GitHub: [@huseyinbiyik](https://github.com/huseyinbiyik).\n- Twitter: [@huseyin__biyik](https://twitter.com/huseyin__biyik)\n- LinkedIn: [Huseyin_biyik](http://www.linkedin.com/in/tahahuseyinbiyik/)\n\n👤 **Precious Akams** \u003cimg src=\"https://emojis.slackmojis.com/emojis/images/1531849430/4246/blob-sunglasses.gif?1531849430\" width=\"20\"/\u003e\n\n- GitHub: [@kamzzy](https://github.com/kamzzy).\n- Twitter: [@precious_akams](https://twitter.com/precious_akams)\n- LinkedIn: [Onyeagoziri_Akams](https://www.linkedin.com/in/Onyeagoziri_Akams/)\n\n👤 **Felix Odete** \u003cimg src=\"https://emojis.slackmojis.com/emojis/images/1531849430/4246/blob-sunglasses.gif?1531849430\" width=\"20\"/\u003e\n\n- GitHub: [@felixodette](https://github.com/felixodette).\n- Twitter: [@Odette3000](https://twitter.com/Odette3000)\n- LinkedIn: [Felix_Odete](https://www.linkedin.com/in/Felix_Odete/)\n\n\n## 🤝 Contributing\n\nContributions, issues, and feature requests are welcome!\n\nFeel free to check the [issues page](https://github.com/kamzzy/Hotel-Room/issues).\n\n## Show your support\n\nGive a ⭐️ if you like this project!\n\n## Acknowledgments\n\n- [Microverse](https://www.microverse.org/)\n- Code Reviewers\n- Coding Partners\n\n## 📝 License\n\nThis project is [MIT](./MIT.md) licensed.\n\n![](https://img.shields.io/badge/Microverse-blueviolet)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpreciousakams%2Fhotel-room","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpreciousakams%2Fhotel-room","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpreciousakams%2Fhotel-room/lists"}