├── .gitignore ├── README.md ├── client ├── README.md ├── package-lock.json ├── package.json ├── public │ ├── apple-touch-icon.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ ├── images │ │ ├── IndianTandooriChickenTikka.jpg │ │ ├── cheesepepperoni.jpg │ │ ├── chicken_golden_delight.jpg │ │ ├── farmhouse.jpg │ │ ├── logo.png │ │ ├── margherita.jpg │ │ └── veggie_paradise.jpg │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt ├── src │ ├── App.css │ ├── App.js │ ├── App.test.js │ ├── actions │ │ ├── cartAction.js │ │ ├── orderAction.js │ │ ├── pizzaAction.js │ │ └── userAction.js │ ├── components │ │ ├── About.jsx │ │ ├── Admin │ │ │ ├── AddNewPizza.jsx │ │ │ ├── EditPizza.jsx │ │ │ ├── OrderList.jsx │ │ │ ├── Pizzaslist.jsx │ │ │ └── Userlist.jsx │ │ ├── Checkout.jsx │ │ ├── Contact.jsx │ │ ├── Error.jsx │ │ ├── Filters.jsx │ │ ├── Loader.jsx │ │ ├── NavBar.jsx │ │ ├── Pizza.jsx │ │ ├── Policy.jsx │ │ ├── Success.jsx │ │ └── TopBar.jsx │ ├── index.css │ ├── index.js │ ├── pizza-data.js │ ├── reducers │ │ ├── cartReducer.js │ │ ├── orderReducer.js │ │ ├── pizzaReducer.js │ │ └── userReducer.js │ ├── screens │ │ ├── AdminScreen.jsx │ │ ├── CartScreen.jsx │ │ ├── HomeScreen.jsx │ │ ├── Login.jsx │ │ ├── OrderScreen.jsx │ │ └── Registe.jsx │ └── store.js └── yarn.lock ├── config └── config.js ├── data └── pizza-data.js ├── models ├── orderModel.js ├── pizzaModel.js └── userModel.js ├── package.json ├── routes ├── orderRoute.js ├── pizzaRoute.js └── userRoutes.js ├── seeder.js └── server.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techinfo-youtube/pizza-shop-mern-stack-app-cmplete-code/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techinfo-youtube/pizza-shop-mern-stack-app-cmplete-code/HEAD/README.md -------------------------------------------------------------------------------- /client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techinfo-youtube/pizza-shop-mern-stack-app-cmplete-code/HEAD/client/README.md -------------------------------------------------------------------------------- /client/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techinfo-youtube/pizza-shop-mern-stack-app-cmplete-code/HEAD/client/package-lock.json -------------------------------------------------------------------------------- /client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techinfo-youtube/pizza-shop-mern-stack-app-cmplete-code/HEAD/client/package.json -------------------------------------------------------------------------------- /client/public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techinfo-youtube/pizza-shop-mern-stack-app-cmplete-code/HEAD/client/public/apple-touch-icon.png -------------------------------------------------------------------------------- /client/public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techinfo-youtube/pizza-shop-mern-stack-app-cmplete-code/HEAD/client/public/favicon-16x16.png -------------------------------------------------------------------------------- /client/public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techinfo-youtube/pizza-shop-mern-stack-app-cmplete-code/HEAD/client/public/favicon-32x32.png -------------------------------------------------------------------------------- /client/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techinfo-youtube/pizza-shop-mern-stack-app-cmplete-code/HEAD/client/public/favicon.ico -------------------------------------------------------------------------------- /client/public/images/IndianTandooriChickenTikka.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techinfo-youtube/pizza-shop-mern-stack-app-cmplete-code/HEAD/client/public/images/IndianTandooriChickenTikka.jpg -------------------------------------------------------------------------------- /client/public/images/cheesepepperoni.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techinfo-youtube/pizza-shop-mern-stack-app-cmplete-code/HEAD/client/public/images/cheesepepperoni.jpg -------------------------------------------------------------------------------- /client/public/images/chicken_golden_delight.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techinfo-youtube/pizza-shop-mern-stack-app-cmplete-code/HEAD/client/public/images/chicken_golden_delight.jpg -------------------------------------------------------------------------------- /client/public/images/farmhouse.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techinfo-youtube/pizza-shop-mern-stack-app-cmplete-code/HEAD/client/public/images/farmhouse.jpg -------------------------------------------------------------------------------- /client/public/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techinfo-youtube/pizza-shop-mern-stack-app-cmplete-code/HEAD/client/public/images/logo.png -------------------------------------------------------------------------------- /client/public/images/margherita.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techinfo-youtube/pizza-shop-mern-stack-app-cmplete-code/HEAD/client/public/images/margherita.jpg -------------------------------------------------------------------------------- /client/public/images/veggie_paradise.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techinfo-youtube/pizza-shop-mern-stack-app-cmplete-code/HEAD/client/public/images/veggie_paradise.jpg -------------------------------------------------------------------------------- /client/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techinfo-youtube/pizza-shop-mern-stack-app-cmplete-code/HEAD/client/public/index.html -------------------------------------------------------------------------------- /client/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techinfo-youtube/pizza-shop-mern-stack-app-cmplete-code/HEAD/client/public/logo192.png -------------------------------------------------------------------------------- /client/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techinfo-youtube/pizza-shop-mern-stack-app-cmplete-code/HEAD/client/public/logo512.png -------------------------------------------------------------------------------- /client/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techinfo-youtube/pizza-shop-mern-stack-app-cmplete-code/HEAD/client/public/manifest.json -------------------------------------------------------------------------------- /client/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techinfo-youtube/pizza-shop-mern-stack-app-cmplete-code/HEAD/client/public/robots.txt -------------------------------------------------------------------------------- /client/src/App.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techinfo-youtube/pizza-shop-mern-stack-app-cmplete-code/HEAD/client/src/App.js -------------------------------------------------------------------------------- /client/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techinfo-youtube/pizza-shop-mern-stack-app-cmplete-code/HEAD/client/src/App.test.js -------------------------------------------------------------------------------- /client/src/actions/cartAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techinfo-youtube/pizza-shop-mern-stack-app-cmplete-code/HEAD/client/src/actions/cartAction.js -------------------------------------------------------------------------------- /client/src/actions/orderAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techinfo-youtube/pizza-shop-mern-stack-app-cmplete-code/HEAD/client/src/actions/orderAction.js -------------------------------------------------------------------------------- /client/src/actions/pizzaAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techinfo-youtube/pizza-shop-mern-stack-app-cmplete-code/HEAD/client/src/actions/pizzaAction.js -------------------------------------------------------------------------------- /client/src/actions/userAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techinfo-youtube/pizza-shop-mern-stack-app-cmplete-code/HEAD/client/src/actions/userAction.js -------------------------------------------------------------------------------- /client/src/components/About.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techinfo-youtube/pizza-shop-mern-stack-app-cmplete-code/HEAD/client/src/components/About.jsx -------------------------------------------------------------------------------- /client/src/components/Admin/AddNewPizza.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techinfo-youtube/pizza-shop-mern-stack-app-cmplete-code/HEAD/client/src/components/Admin/AddNewPizza.jsx -------------------------------------------------------------------------------- /client/src/components/Admin/EditPizza.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techinfo-youtube/pizza-shop-mern-stack-app-cmplete-code/HEAD/client/src/components/Admin/EditPizza.jsx -------------------------------------------------------------------------------- /client/src/components/Admin/OrderList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techinfo-youtube/pizza-shop-mern-stack-app-cmplete-code/HEAD/client/src/components/Admin/OrderList.jsx -------------------------------------------------------------------------------- /client/src/components/Admin/Pizzaslist.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techinfo-youtube/pizza-shop-mern-stack-app-cmplete-code/HEAD/client/src/components/Admin/Pizzaslist.jsx -------------------------------------------------------------------------------- /client/src/components/Admin/Userlist.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techinfo-youtube/pizza-shop-mern-stack-app-cmplete-code/HEAD/client/src/components/Admin/Userlist.jsx -------------------------------------------------------------------------------- /client/src/components/Checkout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techinfo-youtube/pizza-shop-mern-stack-app-cmplete-code/HEAD/client/src/components/Checkout.jsx -------------------------------------------------------------------------------- /client/src/components/Contact.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techinfo-youtube/pizza-shop-mern-stack-app-cmplete-code/HEAD/client/src/components/Contact.jsx -------------------------------------------------------------------------------- /client/src/components/Error.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techinfo-youtube/pizza-shop-mern-stack-app-cmplete-code/HEAD/client/src/components/Error.jsx -------------------------------------------------------------------------------- /client/src/components/Filters.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techinfo-youtube/pizza-shop-mern-stack-app-cmplete-code/HEAD/client/src/components/Filters.jsx -------------------------------------------------------------------------------- /client/src/components/Loader.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techinfo-youtube/pizza-shop-mern-stack-app-cmplete-code/HEAD/client/src/components/Loader.jsx -------------------------------------------------------------------------------- /client/src/components/NavBar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techinfo-youtube/pizza-shop-mern-stack-app-cmplete-code/HEAD/client/src/components/NavBar.jsx -------------------------------------------------------------------------------- /client/src/components/Pizza.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techinfo-youtube/pizza-shop-mern-stack-app-cmplete-code/HEAD/client/src/components/Pizza.jsx -------------------------------------------------------------------------------- /client/src/components/Policy.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techinfo-youtube/pizza-shop-mern-stack-app-cmplete-code/HEAD/client/src/components/Policy.jsx -------------------------------------------------------------------------------- /client/src/components/Success.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techinfo-youtube/pizza-shop-mern-stack-app-cmplete-code/HEAD/client/src/components/Success.jsx -------------------------------------------------------------------------------- /client/src/components/TopBar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techinfo-youtube/pizza-shop-mern-stack-app-cmplete-code/HEAD/client/src/components/TopBar.jsx -------------------------------------------------------------------------------- /client/src/index.css: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /client/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techinfo-youtube/pizza-shop-mern-stack-app-cmplete-code/HEAD/client/src/index.js -------------------------------------------------------------------------------- /client/src/pizza-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techinfo-youtube/pizza-shop-mern-stack-app-cmplete-code/HEAD/client/src/pizza-data.js -------------------------------------------------------------------------------- /client/src/reducers/cartReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techinfo-youtube/pizza-shop-mern-stack-app-cmplete-code/HEAD/client/src/reducers/cartReducer.js -------------------------------------------------------------------------------- /client/src/reducers/orderReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techinfo-youtube/pizza-shop-mern-stack-app-cmplete-code/HEAD/client/src/reducers/orderReducer.js -------------------------------------------------------------------------------- /client/src/reducers/pizzaReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techinfo-youtube/pizza-shop-mern-stack-app-cmplete-code/HEAD/client/src/reducers/pizzaReducer.js -------------------------------------------------------------------------------- /client/src/reducers/userReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techinfo-youtube/pizza-shop-mern-stack-app-cmplete-code/HEAD/client/src/reducers/userReducer.js -------------------------------------------------------------------------------- /client/src/screens/AdminScreen.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techinfo-youtube/pizza-shop-mern-stack-app-cmplete-code/HEAD/client/src/screens/AdminScreen.jsx -------------------------------------------------------------------------------- /client/src/screens/CartScreen.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techinfo-youtube/pizza-shop-mern-stack-app-cmplete-code/HEAD/client/src/screens/CartScreen.jsx -------------------------------------------------------------------------------- /client/src/screens/HomeScreen.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techinfo-youtube/pizza-shop-mern-stack-app-cmplete-code/HEAD/client/src/screens/HomeScreen.jsx -------------------------------------------------------------------------------- /client/src/screens/Login.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techinfo-youtube/pizza-shop-mern-stack-app-cmplete-code/HEAD/client/src/screens/Login.jsx -------------------------------------------------------------------------------- /client/src/screens/OrderScreen.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techinfo-youtube/pizza-shop-mern-stack-app-cmplete-code/HEAD/client/src/screens/OrderScreen.jsx -------------------------------------------------------------------------------- /client/src/screens/Registe.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techinfo-youtube/pizza-shop-mern-stack-app-cmplete-code/HEAD/client/src/screens/Registe.jsx -------------------------------------------------------------------------------- /client/src/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techinfo-youtube/pizza-shop-mern-stack-app-cmplete-code/HEAD/client/src/store.js -------------------------------------------------------------------------------- /client/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techinfo-youtube/pizza-shop-mern-stack-app-cmplete-code/HEAD/client/yarn.lock -------------------------------------------------------------------------------- /config/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techinfo-youtube/pizza-shop-mern-stack-app-cmplete-code/HEAD/config/config.js -------------------------------------------------------------------------------- /data/pizza-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techinfo-youtube/pizza-shop-mern-stack-app-cmplete-code/HEAD/data/pizza-data.js -------------------------------------------------------------------------------- /models/orderModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techinfo-youtube/pizza-shop-mern-stack-app-cmplete-code/HEAD/models/orderModel.js -------------------------------------------------------------------------------- /models/pizzaModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techinfo-youtube/pizza-shop-mern-stack-app-cmplete-code/HEAD/models/pizzaModel.js -------------------------------------------------------------------------------- /models/userModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techinfo-youtube/pizza-shop-mern-stack-app-cmplete-code/HEAD/models/userModel.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techinfo-youtube/pizza-shop-mern-stack-app-cmplete-code/HEAD/package.json -------------------------------------------------------------------------------- /routes/orderRoute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techinfo-youtube/pizza-shop-mern-stack-app-cmplete-code/HEAD/routes/orderRoute.js -------------------------------------------------------------------------------- /routes/pizzaRoute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techinfo-youtube/pizza-shop-mern-stack-app-cmplete-code/HEAD/routes/pizzaRoute.js -------------------------------------------------------------------------------- /routes/userRoutes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techinfo-youtube/pizza-shop-mern-stack-app-cmplete-code/HEAD/routes/userRoutes.js -------------------------------------------------------------------------------- /seeder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techinfo-youtube/pizza-shop-mern-stack-app-cmplete-code/HEAD/seeder.js -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techinfo-youtube/pizza-shop-mern-stack-app-cmplete-code/HEAD/server.js --------------------------------------------------------------------------------