Access/install the application at: https://snaqtime.herokuapp.com/
The Tinder for food! Pictures from the restaurants around you are presented in a Tinder-like style card. Images are provided using the Yelp API (Link)
This a PWA (Progressive Web App) made with Create-React-App.
Since this application is a PWA, you can install it to your phone and make it behave like a native application.
Make sure you have Google Chrome installed on your device
To install:
- Open the Google Chrome app
- Navigate to https://snaqtime.herokuapp.com/
- You will see a "Add to Homescreen" prompt. Tap on that prompt
- It will be installed to your device and accessible from the home screen
The images shown are from restaurants near you.
Don't like the current food shown? Tap the X
icon on the card and it will go to the next one.
Like what you see? Tap the green check mark
on the card and it will show you the name of the restaurant.
The 3 sliders below allow you to change the results you see.
The money sign
allows you set the budget of the food you see.
The pin
allows you set the distance you are willing to travel.
The fire
icon allows you to set the spicyness.
IT ALSO SUPPORTS GESTURES! Swipe left to act as the X
and swipe right to act as the green check mark
.
-
Run
npm install
-
This application requires the use of your location so use must use
https
for this to work. Use the following commands to usehttps
on development (https://facebook.github.io/create-react-app/docs/using-https-in-development#docsNav):- Windows (cmd):
set HTTPS=true&&npm start
- Windows (powershell):
($env:HTTPS = "true") -and (npm start)
- Linux/MacOS (bash):
HTTPS=true npm start