├── .gitignore ├── README.md ├── app.js ├── controllers ├── authController.js ├── itemController.js └── userController.js ├── middleware └── auth.js ├── models ├── account.js ├── item.js ├── order.js ├── seller.js └── user.js ├── nodemon.json ├── package.json ├── routes ├── auth.js ├── item.js └── user.js └── util └── socket.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhi0402/foodHub-backend-server/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhi0402/foodHub-backend-server/HEAD/README.md -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhi0402/foodHub-backend-server/HEAD/app.js -------------------------------------------------------------------------------- /controllers/authController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhi0402/foodHub-backend-server/HEAD/controllers/authController.js -------------------------------------------------------------------------------- /controllers/itemController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhi0402/foodHub-backend-server/HEAD/controllers/itemController.js -------------------------------------------------------------------------------- /controllers/userController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhi0402/foodHub-backend-server/HEAD/controllers/userController.js -------------------------------------------------------------------------------- /middleware/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhi0402/foodHub-backend-server/HEAD/middleware/auth.js -------------------------------------------------------------------------------- /models/account.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhi0402/foodHub-backend-server/HEAD/models/account.js -------------------------------------------------------------------------------- /models/item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhi0402/foodHub-backend-server/HEAD/models/item.js -------------------------------------------------------------------------------- /models/order.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhi0402/foodHub-backend-server/HEAD/models/order.js -------------------------------------------------------------------------------- /models/seller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhi0402/foodHub-backend-server/HEAD/models/seller.js -------------------------------------------------------------------------------- /models/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhi0402/foodHub-backend-server/HEAD/models/user.js -------------------------------------------------------------------------------- /nodemon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhi0402/foodHub-backend-server/HEAD/nodemon.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhi0402/foodHub-backend-server/HEAD/package.json -------------------------------------------------------------------------------- /routes/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhi0402/foodHub-backend-server/HEAD/routes/auth.js -------------------------------------------------------------------------------- /routes/item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhi0402/foodHub-backend-server/HEAD/routes/item.js -------------------------------------------------------------------------------- /routes/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhi0402/foodHub-backend-server/HEAD/routes/user.js -------------------------------------------------------------------------------- /util/socket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhi0402/foodHub-backend-server/HEAD/util/socket.js --------------------------------------------------------------------------------