https://github.com/claeusdev/recipee-test
Recipe browser
https://github.com/claeusdev/recipee-test
Last synced: 6 months ago
JSON representation
Recipe browser
- Host: GitHub
- URL: https://github.com/claeusdev/recipee-test
- Owner: claeusdev
- Created: 2024-08-05T23:44:05.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-08-14T12:43:41.000Z (over 1 year ago)
- Last Synced: 2025-08-02T16:27:19.832Z (6 months ago)
- Language: Ruby
- Homepage: https://recipee.fly.dev/
- Size: 2.37 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Recipe Book
Find live application deployed to fly.io at: [RecipeBook](https://recipee.fly.dev/) (might take a few seconds to load because of free VM).
## User Stories
As a user:
- I am able to search by ingredients
- I am able to filter by category
- I am able to filter by popularity (determined by highest rated >= 4.5)
- I am able to filter by quick to cook (determined by quick to cook `cook_time` <= 30 minutes)
## Requirements
- Rails 7.1
- Ruby 3+
- PostgreSQL
- ReactJS
- Esbuild
## Database Structure
Here's an example entity-relationship diagram of the data model:

## Configure to run locally
1. Install gems: `bundle install`
2. Database setup: `rake db:setup`
3. Run the migrations: `rails db:migrate`
4. Run `rails db:seed` to get recipe data from `db/recipe-en.json`
5. Run the server: `bin/dev`
You should now be able to open the application in your browser by visiting `http://localhost:3000/`.
## Testing
Tests have been added to spec out the most critical parts of the api.
`bundle exec rspec`