Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tinspham209/react-burger-app
Website Order Burger, Tracking new Order with React, Redux, Firebase
https://github.com/tinspham209/react-burger-app
burger firebase hooks redux
Last synced: about 8 hours ago
JSON representation
Website Order Burger, Tracking new Order with React, Redux, Firebase
- Host: GitHub
- URL: https://github.com/tinspham209/react-burger-app
- Owner: tinspham209
- Created: 2019-12-23T18:13:17.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2023-12-15T20:33:49.000Z (11 months ago)
- Last Synced: 2023-12-15T22:16:30.845Z (11 months ago)
- Topics: burger, firebase, hooks, redux
- Language: JavaScript
- Homepage:
- Size: 3.17 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 22
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Mini Project: Order Burger Application
## Date: 24 - Dec - 2019
### Functions
- Choose type of Burger
- Login
- Provide information order
- Confirm order
- Finish order
- View List of Orders### Screenshot
### Tech-Stack
- React, Hooks
- Redux, Hooks
- Firebase
- axios### Tutorials
https://www.udemy.com/course/react-the-complete-guide-incl-redux/### Directory Structure
```
.
├── .gitignore
├── package.json
├── README.md
├── public
├── build
├── config
├── scripts
└── src
├── assets
└── images
├── components
├── Burger
├── BuildControls
└── BuldControl
├── BurgerIngredient
└── OrderSummary
├── Logo
├── Navigation
├── NavigationItems
└── NavigationItem
├── SideDrawer
└── DrawerToggle
└── Toolbar
├── Order
└── CheckoutSummary
└── UI
├── Backdrop
├── Button
├── Input
├── Modal
└── Spinner
├── containers
├── Auth
└── Logout
├── BurgerBuilder
├── Checkout
└── ContactData
└── Orders
├── hoc
├── Auxilary
├── Layout
└── withErrorHandler
├── hooks
├── shared
├── store
├── actions
├── reducers
└── sagas
├── App.js
├── axios-orders
├── index.css
└── index.js
```
### Set up
Use the cmd line to clone repo to your computer
```
git clone [github_repo_url]
```
Use the cmd line to install dependencies.
```
npm install
```
Run in cmd for start the dependencies server
```
npm start
```