Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/akhiljw46/e-thattukada
A food order app
https://github.com/akhiljw46/e-thattukada
cart firebase food food-ordering javascript parallax-scrolling react reactjs
Last synced: 13 days ago
JSON representation
A food order app
- Host: GitHub
- URL: https://github.com/akhiljw46/e-thattukada
- Owner: akhiljw46
- License: mit
- Created: 2023-03-16T03:31:24.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-01-07T17:44:10.000Z (11 months ago)
- Last Synced: 2024-04-18T01:54:13.833Z (7 months ago)
- Topics: cart, firebase, food, food-ordering, javascript, parallax-scrolling, react, reactjs
- Language: JavaScript
- Homepage: https://ethattukada.netlify.app
- Size: 2.26 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# e-Thattukada
A food order app. Choose dishes from the broad menu and order instantly.
Created using React JS
Hosted on : https://ethattukada.netlify.app
## How to run
### Step 1
Create a `.env` file in the project folder with the following variable :
`REACT_APP_DATABASE_URL` : Enter the [firebase realtime database](https://firebase.google.com/docs/database) URL.
Where, the database has data in following format:
```
"meals":{
"ITEM_ID": {
"description": "ITEM_DESCRIPTION",
"image": "ITEM_IMAGE_URL",
"name": "ITEM_NAME",
"price": "ITEM_PRICE"
},
}```
### Step 2
Run the following commands:
```
npm install
npm start
```Enjoy!!