Nuga0909 / recipe-app-ruby

Capstone group project

Home Page:https://recipe-app-ruby-eight.vercel.app

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool


Recipe App

πŸ“— Table of Contents

πŸ“– Recipe

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.

πŸ›  Built With

Tech Stack

Server
  • Ruby
  • Rails
  • Database
  • Postgres
  • Key Features

    • Keep track of Ingredients
    • Keep track of Recipes
    • Keep track of Inventory
    • Generate a shopping list

    (back to top)

    πŸš€ Live Demo

    (back to top)

    πŸ’» Getting Started

    To get a local copy up and running, follow these steps.

    Prerequisites

    In order to run this project you need:

        ruby >= 3.2.0
        rails >= 7.0
        postgres >- 15.3
    

    Setup

    Clone this repository to your desired folder:

      git git@github.com:marvin-nyalik/Recipe.git

    You need to setup database for these project

      development = recipe_dev
      test        = recipe_test
      production  = Recipe_production
    

    or you can use your own database and change the config/database.yml

      default: &default
        adapter: postgresql
        encoding: unicode
        pool: 5
        username: [your_username]
        password: [your_password]
        host: localhost
    
      development:
        <<: *default
        database: [your_database_for_development]
    
      test:
        <<: *default
        database: [your_database_for_test]
    
      production:
        <<: *default
        database: [your_database_for_production]

    Install

    Install this project with:

      cd Recipe
      bundle install

    it will install the required gemfile for running the project

    Usage

    to use this project:

       rails server -p 3000
      rails tailwindcss:watch
    

    it will run the server on localhost:3000

    (back to top)

    πŸ‘₯ Author

    πŸ‘€ MD Mahadi Hasan Rifat

    πŸ‘€ Eric Delali Mawudeku

    πŸ‘€ Adeshina Adenuga

    (back to top)

    πŸ”­ Future Features

    • Add checkout
    • Implement in-app communication
    • Add recipe preparation video links

    (back to top)

    🀝 Contributing

    Contributions, issues, and feature requests are welcome!

    Feel free to check the issues page.

    (back to top)

    ⭐️ Show your support

    If you like this project you can share this project to your friend

    (back to top)

    πŸ™ Acknowledgments

    I would like to thank microverse for defining these project requirements

    (back to top)

    πŸ“ License

    This project is MIT licensed.

    (back to top)

    About

    Capstone group project

    https://recipe-app-ruby-eight.vercel.app

    License:MIT License


    Languages

    Language:Ruby 54.7%Language:HTML 23.6%Language:CSS 15.6%Language:JavaScript 2.7%Language:Batchfile 1.9%Language:Dockerfile 1.3%Language:Shell 0.2%