Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/edi-sipka/recipe_app
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/edi-sipka/recipe_app
Last synced: 21 days ago
JSON representation
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/edi-sipka/recipe_app
- Owner: edi-sipka
- License: mit
- Created: 2022-12-19T09:49:29.000Z (about 2 years ago)
- Default Branch: dev
- Last Pushed: 2023-02-13T10:15:04.000Z (almost 2 years ago)
- Last Synced: 2024-05-18T15:25:31.781Z (8 months ago)
- Language: Ruby
- Homepage:
- Size: 208 KB
- Stars: 13
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
> 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.
BackEnd
Test
Database
- **[Add Recipe]** - Add Recipe.
- **[Display all recipe foods]** - Display all recipe foods.
- **[Add inventory]** -Add inventory.
- [Coming soon]()
If you dont have Ruby installed on your computer, you can download it from [here](https://www.ruby-lang.org/en/downloads/).
If you dont have Rails installed on your computer, you can download it from [here](https://rubyonrails.org/).
If you dont have PostgreSQL installed on your computer, you can download it from [here](https://www.postgresql.org/download/).
If you have installed git you can clone the code to your machine, or download a ZIP of all the files directly.
> `NOTE:` _You may need to run the following commands in the project directory to install the required gems and run the application:_
1. Install gem packages with:
```
bundle install
```
2. Open the config/database.yml file in the project directory and change the username and password to your PostgreSQL username and password.
Edit the default section of the file to look like this:
```
default: &default
adapter: postgresql
encoding: unicode
# For details on connection pooling, see Rails configuration guide
# http://guides.rubyonrails.org/configuring.html#database-pooling
pool: <%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %>
username:
password:
```
3. Create the database with:
```
rails db:create
```
4. Start the development server
```
rails server
```
5. Open the app in your browser at http://localhost:3000
### Run tests
To run tests, run the following command:
rspec
👤 _Edi Sipka_
- GitHub: [@Edi-Sipka](https://github.com/edi-sipka)
- Twitter: [@sipka_edii](https://twitter.com/sipka_edii)
- LinkedIn: [Edi Sipka](https://www.linkedin.com/in/edi-%C5%A1ipka-5b681b202/)
👤 **Riya Bulia**
- GitHub: [@RiyaBulia12](https://github.com/RiyaBulia12)
- LinkedIn: [Riya-Bulia](https://linkedin.com/in/riya-bulia)
👤 **Moathal Kachi**
- [@github](https://github.com/Moathal)
- [@LinkedIn](https://www.linkedin.com/in/moathalkachi)
- [ ] **[Update recipe]**
- [ ] **[Update inventory]**
Contributions, issues, and feature requests are welcome!
Feel free to check the [issues page](../../issues/).
If you like this project give as a star! ⭐️
- Hat tip to anyone whose code was used
- Inspiration
- Microverse
- **[How I can run this project?]**
- [After cloning repository, run rails server.]
- **[Can I add likes on post?]**
- [You can add likes and comments on a post.]
This project is [MIT](./LICENSE) licensed.
_NOTE: we recommend using the [MIT license](https://choosealicense.com/licenses/mit/) - you can set it up quickly by [using templates available on GitHub](https://docs.github.com/en/communities/setting-up-your-project-for-healthy-contributions/adding-a-license-to-a-repository). You can also use [any other license](https://choosealicense.com/licenses/) if you wish._