{"id":19174436,"url":"https://github.com/benmukebo/sweet-aromas-api","last_synced_at":"2025-06-23T18:38:39.279Z","repository":{"id":133757485,"uuid":"527623550","full_name":"BenMukebo/sweet-aromas-api","owner":"BenMukebo","description":"Sweet~aromas is a catalogue of Recipes that provides a set of instructions used for preparing and producing a certain food, dish, or drink. The purpose of a recipe is to have a precise record of the ingredients used, the amounts needed, and the way they are combined.","archived":false,"fork":false,"pushed_at":"2023-04-27T09:58:31.000Z","size":50,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"development","last_synced_at":"2025-02-23T00:43:46.110Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://sweet-aromas.netlify.app/","language":"Ruby","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/BenMukebo.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":"2022-08-22T15:28:18.000Z","updated_at":"2023-05-06T02:04:08.000Z","dependencies_parsed_at":"2023-06-27T11:10:39.265Z","dependency_job_id":null,"html_url":"https://github.com/BenMukebo/sweet-aromas-api","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/BenMukebo/sweet-aromas-api","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BenMukebo%2Fsweet-aromas-api","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BenMukebo%2Fsweet-aromas-api/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BenMukebo%2Fsweet-aromas-api/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BenMukebo%2Fsweet-aromas-api/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/BenMukebo","download_url":"https://codeload.github.com/BenMukebo/sweet-aromas-api/tar.gz/refs/heads/development","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BenMukebo%2Fsweet-aromas-api/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":261534980,"owners_count":23173506,"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":[],"created_at":"2024-11-09T10:17:52.003Z","updated_at":"2025-06-23T18:38:39.248Z","avatar_url":"https://github.com/BenMukebo.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"![](https://img.shields.io/badge/Microverse-blueviolet)\n\n# Catalogue of Recipes\n\n\n## Description\n\n\u003e Catalogue of Recipes is a React based app that provides a set of instructions used for preparing and producing a certain food, dish, or drink. The purpose of a recipe is to have a precise record of the ingredients used, the amounts needed, and the way they are combined.\n\n\n### Screenshots 📸\n\n|       Home Page                 |          -- Page                |         Add Category Form                |\n:--------------------------------:|:-------------------------------------:|:-------------------------------------------:|\n![](./app/assets/images/img1.png) |![](./app/assets/images/img3.png) |![](./app/assets/images/img4.png) |\n\n\n|         Category-Transaction    |        Add Transaction Form           |         Transaction Details                |\n:--------------------------------:|:-------------------------------------:|:-------------------------------------------:|\n![](./app/assets/images/img5.png) |![](./app/assets/images/img7.png) |![](./app/assets/images/img6.png) |\n\n\n\n## Learning objectives\n\n- \n## API Demo 🔗\n\n[API Link](https://)\n\n## Documentation Demo 🔗\n\n[Documentation Link](https://)\n\n## Live Demo 🔗\n\n[Live Demo Link](https://)\n\n## Front-end 🔗\n\n[Front-end Link](https://www.loom.com/share/2d1971886acf41eab27ea244c1f1acdb)\n\n## Getting Started\n\nTo get a local copy for this project and running follow these simple example steps.\n\n### Prerequisites\n\n- You need to have git installed in your machine.\n- Install a recent version of Postgres.\n- Already install Rails\n\n\n## Setup\n\n## Setting Up PostgreSQL\n\n- The postgres installation doesn't setup a user for you, so you'll need to follow these steps to create a user with permission to create databases\n\n```bash\n$  sudo -u postgres createuser blog-app -s\n```\n\n### Creating the catalogue-of-recipes-api application\n\n- To create project with PostgreSQL database \n\n```bash\n$   rails new catalogue-of-recipes-api  #or\n$   rails new catalogue-of-recipes-api -d postgresql\n\n$   cd Rails-capstone-Budget-app # Move into the application directory\n```\n\n\n### Clone this repository\n\n```bash\n$ git clone https://github.com/BenMukebo/catalogue-of-recipes-api.git\n$ cd catalogue-of-recipes-api\n```\n\n### Create the database\n\n```bash\n$   rails db:create   # or\n$   rake db:create\n```\n\n### Install linter and \n\n- Rubocop gem\n\n```bash\n$  bundle init\n$  bundle install\n```\n\n- Run linter\n\n```bash\n$  rubocop .\n```\n\n- In auto-correct mode, RuboCop will try to automatically fix offenses:\n\n```bash\n$  rubocop -A # or\n$  rubocop --auto-correct-all\n```\n\n\n### Starting up the Web Server\n\n```bash\n$   rails s # or\n$   rails server # or\n$   rails server -p3001\n```\n\n- To restart the server\n\n```bash\n$  sudo service postgresql restart \n$  rails db:reset #to clean the database                                                                    \n```\n\n#### Listing Existing Routes\n\n- You can now visit `http://localhost:3000` to view your new website!\n\n You can also execute the `rails routes` command in your terminal to produce the same output.\n\n\n#### Generate rspec\n\n- At the first you need to include those lines in your Gemfile\n\n```bash\n  gem 'rails-controller-testing'\n  gem 'rspec-rails'\n```\n\n#### Generate Schema\n\n- To drop, create a table and to migrate and send the seed into the database:\n- To push the Migration into the database\n- We use the seeds.rb file to records in the database\n\n```bash\n  $   rails db:drop db:create db:migrate db:seed  \n```\n\n- To check available routes\n\n```bash\n  $   rails routes  \n```\n\n## Built With 🛠️\n\nThis project is build with:\n\n-  ![Ruby](https://img.shields.io/badge/-Ruby-000000?style=flat\u0026logo=ruby\u0026logoColor=red)\n-  ![Ruby on Rails](https://img.shields.io/badge/-Ruby_on_Rails-000000?style=flat\u0026logo=ruby-on-rails\u0026logoColor=blue)\n-  ![Postgre](https://img.shields.io/badge/PostgreSQL-316192?style=for-the-badge\u0026logo=postgresql\u0026logoColor=white)\n\n## Authors\n\n👤 **Ben Mukebo**\n\n- GitHub: [@BenMukebo](https://github.com/BenMukebo)\n- Twitter [@BenMukebo](https://twitter.com/BenMukebo)\n- LinkedIn [BenMukebo](https://www.linkedin.com/in/kasongo-mukebo-ben-591720205/)\n\n👤 **Barack Mukelenga**\n\n- GitHub: [@barackm](https://github.com/barackm)\n- Twitter: [@BarackMukelenga](https://twitter.com/BarackMukelenga)\n- LinkedIn: [Baraka Mukelenga](https://www.linkedin.com/in/baraka-mukelenga/)\n- Portfolio: [Barackm](https://barackm.me)\n## 🤝 Contributor\n\n\nContributions, issues, and feature requests are welcome!\n\nFeel free to check the [issues page](https://github.com/BenMukebo/catalogue-of-recipes-api/issues).\n\n## Show your support\n\nGive a ⭐️ if you like this project!\n\n## Acknowledgments\n\n- Credit to [Gregoire Vella on Behance](https://www.behance.net/gregoirevella), the author of the original [design guidelines](https://www.behance.net/gallery/19759151/Snapscan-iOs-design-and-branding?tracking_source=)\n\n\n## 📝 License\n\nCopyright (c) 2021 [Ben Mukebo](https://www.benmukebo.me/","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbenmukebo%2Fsweet-aromas-api","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbenmukebo%2Fsweet-aromas-api","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbenmukebo%2Fsweet-aromas-api/lists"}