This project was bootstrapped with Create React App.
We are a free, crowdsourced hawker platform in Singapore relying on Singaporeans to share information about our local F&B places. We love hawker food and hope you do too! If you want to contribute, hop over here: contributing.md
We have 4 collections in use: hawkers, deliveries, cuisine, etc. The hakwers and deliveries collection are the most relevant.
Each new hawker listing added as a new document, with an auto-generated id. Each document has the data has shown in data dictionary below
Each delivery request is added as a new document, with an auto-generated id. Data still to be confirmed.
url: (string) the first image uploaded, which is the cover picture
image2: (string) second image uploaded
image3: (string) third image uploaded
image4: (string) fourth image uploaded
image5: (string) fifth image uploaded
image6: (string) sixth image uploaded
name: (string) name of the stall
cuisine: (array<object>) array of cuisine tags
categories: (array<string>) the same, but with cuisine expressed as strings. Used for filtering
postal: (number) postal code of the stall
street: (string) street name of the stall autogenerated from OneMap api
unit: (string) unit number
description: (string) short description of the stall with char limit
description_detail: (string) long description of the stall
region: (array<object>) array of potential regions like north, south, east, west, islandwide
regions: (array<string>) the same, but regions expressed as strings. Used for filtering
islandwide: (boolean) now redundant, was used to check if delivery is islandwide
delivery: (string) now redundant, was used to list areas of delivery
price: (number) delivery fee
contact: (number) contact number of the stall
latitude: (number) now redundant
longitude: (number) now redundant
call: (boolean) indicates whether user should call the stall
whatsapp: (boolean) indicates whether user should whatsapp the stall
sms: (boolean) indicates whether user should sms the stall
inperson: (boolean) indicates whether user should visit the stall inperson
opening: (string) opening hours for the stall
pickup_option: (boolean) indicates customer can pick up from stall
delivery_option: (boolean) indicates customer can deliver from stall
website: (string) website url
promo: (string) promo e.g. 30% off
condition: (string) condition for promo e.g. if order more than $40
delivery_detail: (string) more details regarding
menu: (boolean) indicates whether there is a menu added
menuitem: (array) array of menu items
menuprice: (array) array of menu prices mapped by index to menuitem
docid: (string) document id generated by firebase
wechatid: (string) WeChat contact id
location: (object) Geopoint location generated with geo.point(Number(this.state.latitude), Number(this.state.longitude))
In the project directory, you can run:
Installs the app and necessary dependencies. More dependencies may need to be installed manually.
Runs the app in the development mode.
Open http://localhost:3000 to view it in the browser.
The page will reload if you make edits.
You will also see any lint errors in the console.
Launches the test runner in the interactive watch mode.
See the section about running tests for more information.
Builds the app for production to the build
folder.
It correctly bundles React in production mode and optimizes the build for the best performance.
The build is minified and the filenames include the hashes.
Your app is ready to be deployed!
See the section about deployment for more information.
Note: this is a one-way operation. Once you eject
, you can’t go back!
If you aren’t satisfied with the build tool and configuration choices, you can eject
at any time. This command will remove the single build dependency from your project.
Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except eject
will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own.
You don’t have to ever use eject
. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it.
You can learn more in the Create React App documentation.
To learn React, check out the React documentation.
This section has moved here: https://facebook.github.io/create-react-app/docs/code-splitting
This section has moved here: https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size
This section has moved here: https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app
This section has moved here: https://facebook.github.io/create-react-app/docs/advanced-configuration
This section has moved here: https://facebook.github.io/create-react-app/docs/deployment
This section has moved here: https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify