« Where do we eat today ? »
Lunchfinder is a simple application that helps you choose quickly a restaurant to eat around your location.
A quick introduction of the minimal setup you need to get a hello world up & running.
yarn start
This is build using create-react-app by facebook, and it use React, Reflux and the Foursquare/Swarm API
Having node, and nodemon installed on the system.
Here's a brief intro about what a developer must do in order to start developing the project further:
git clone https://github.com/mdcarter/lunchfinder.io
cd lunchfinder.io/
yarn
Once the dependencies are installed, you can start the app using this command :
yarn start
This will also open a browser pointing to the correct url.
If you need to build the project to be able to host is somewhere, use this command:
yarn build
A "build" folder will be created, containing everything that needs to be hosted.
Once you have "now" installed and configured on your machine, just use this command to deploy the app online:
yarn deploy
The tests are located in the "tests" folder. Run the tests using this command:
yarn test
The app use the Foursquare API, you can check the documentation on this page.