https://github.com/expresshermes/hunger-book
A web app to get restaurant recommendation based on budget, number of guests, cuisine, and locality. As of now, the dataset contains only restaurants of Lucknow, India.
https://github.com/expresshermes/hunger-book
bootstrap css flask html python
Last synced: about 1 year ago
JSON representation
A web app to get restaurant recommendation based on budget, number of guests, cuisine, and locality. As of now, the dataset contains only restaurants of Lucknow, India.
- Host: GitHub
- URL: https://github.com/expresshermes/hunger-book
- Owner: ExpressHermes
- License: mit
- Created: 2020-02-10T12:33:22.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-09-24T08:17:27.000Z (almost 4 years ago)
- Last Synced: 2025-04-02T07:41:23.121Z (about 1 year ago)
- Topics: bootstrap, css, flask, html, python
- Language: HTML
- Homepage: https://hungerbook.onrender.com
- Size: 89.8 KB
- Stars: 1
- Watchers: 1
- Forks: 3
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Hunger-Book
A web app to get restaurant recommendation based on budget, number of guests, cuisine, and locality. As of now, the dataset contains only restaurants of Lucknow, India.
# Requirements
* Python
* Flask
# Contribution Guidelines
- Fork and star the repo.
- Add a upstream link to main branch in your cloned repo
```
git remote add upstream https://github.com/ExpressHermes/Hunger-Book.git
```
- Keep your cloned repo upto date by pulling from upstream (this will also avoid any merge conflicts while committing new changes)
```
git pull upstream master
```
- Create your feature branch
```
git checkout -b
```
- Commit all the changes
```
git commit -am "Meaningful commit message"
```
- Push the changes for review
```
git push origin
```