Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ahmedeid6842/recipe_app
The Recipe app keeps track of all your recipes, ingredients, and inventory. It will allow you to save ingredients, keep track of what you have, create recipes, and generate a shopping list based on what you have and what you are missing from a recipe.
https://github.com/ahmedeid6842/recipe_app
Last synced: 25 days ago
JSON representation
The Recipe app keeps track of all your recipes, ingredients, and inventory. It will allow you to save ingredients, keep track of what you have, create recipes, and generate a shopping list based on what you have and what you are missing from a recipe.
- Host: GitHub
- URL: https://github.com/ahmedeid6842/recipe_app
- Owner: ahmedeid6842
- Created: 2023-10-09T19:21:32.000Z (about 1 year ago)
- Default Branch: development
- Last Pushed: 2023-10-13T21:58:25.000Z (about 1 year ago)
- Last Synced: 2024-04-06T14:31:54.249Z (7 months ago)
- Language: Ruby
- Size: 6.12 MB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Recipe App
# π Table of Contents
- [π About the Project](#about-project)
- [π Built With](#built-with)
- [Tech Stack](#tech-stack)
- [π» Getting Started](#getting-started)
- [Setup](#setup)
- [Prerequisites](#prerequisites)
- [Install](#install)
- [Usage](#usage)
- [Run tests](#run-tests)
- [Deployment](#triangular_flag_on_post-deployment)
- [π₯ Authors](#authors)
- [π Future Features](#future-features)
- [π€ Contributing](#contributing)
- [βοΈ Show your support](#support)
- [π Acknowledgements](#acknowledgements)
- [π License](#license)**Recipe App**
The Recipe app keeps track of all your recipes, ingredients, and inventory. It will allow you to save ingredients, keep track of what you have, create recipes, and generate a shopping list based on what you have and what you are missing from a recipe.
Ruby on Rails
Rspec
Capybara
Bootstrap
## π» Getting Started
The result should look similar to the following data model (this is an Entity Relationship Diagram that you are already familiar with).
![ERD Recipe App](https://github.com/microverseinc/curriculum-rails/raw/main/recipe-app/images/recipe_erd_2_members.png)
1. Ensure you have Ruby 3.2.2 at least, installed on your system. You can check your Ruby version in the terminal by running:
```
ruby -v
```
2. You can clone the project :
Using HTTPS:
```
git clone https://github.com/ahmedeid6842/Recipe_App.git
```
To run this project locally, follow these steps:
1. Open your terminal or command prompt.
2. Navigate to the directory where you have cloned or downloaded the Recipe App repository.
3. Run the following command to install any required dependencies:
```
bundle install
```
4. You need to make sure you have PostgreSQL installed and configured on your local computer beforehand, then create the database for the project:
```
rails db:create
```
5. Now you need to create the tables and relationships that the project needs:
```
rails db:migrate
```
1. Once the setup is complete, ensure you are still in the directory containing the Recipe App files.
2. To run the app, execute the following command:
```
rails s
```
To run the tests ensure you are in the directory containing the test files.
1. Run the tests using the following command:
```
rspec
```
(optional) If you have problem with a different version of 'regexp_parser', you can run the tests with the
version of the gemfile with this command:
```
bundle exec rspec
```
- All tests should pass without any errors or failures, ensuring that the code and its methods are functioning correctly.
π€ **Ahmed Eid**
- Github: [@ahmedeid6842](https://github.com/ahmedeid6842/)
- LinkedIn : [Ahmed Eid](https://www.linkedin.com/in/ahmed-eid-0018571b1/)
- Twitter: [@ahmedeid2684](https://twitter.com/ahmedeid2684)
π€ **CΓ©sar Herrera**
- GitHub: [@cesarherr](https://github.com/cesarherr)
- LinkedIn: [CesarHerr](https://www.linkedin.com/in/cesarherr/)
- [x] **Create a Database**
- [x] **Add Migrations**
- [x] **Add Models**
- [x] **Add Controllers**
- [x] **Add Views**
- [x] **Add tests**
- [x] **Show Foods at index page**
- [x] **Show Recipes by users**
- [x] **Show Public Recipes**
- [x] **Authentication User**
- [x] **Show shopping list**
Contributions, issues, and feature requests are welcome!
Feel free to check the [issues page](https://github.com/ahmedeid6842/Recipe_App/issues).
If you like this project give it a star βοΈ
**I would like to thank Microverse for giving us the opportunity to learn and grow as developers and also I like to thank my family, they are all my support. π**
This project is [MIT](./LICENSE) licensed.