├── .gitignore ├── LICENSE ├── README.md ├── Routs ├── attribute.js ├── categories.js ├── customer.js ├── departments.js ├── oders.js ├── product.js ├── shipping.js ├── shoppingcart.js └── tax.js ├── database ├── .DS_Store ├── tshirtshop.sql └── turingdb.js ├── package.json └── server.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandpatel504/Turing-ECommerce-backend/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandpatel504/Turing-ECommerce-backend/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandpatel504/Turing-ECommerce-backend/HEAD/README.md -------------------------------------------------------------------------------- /Routs/attribute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandpatel504/Turing-ECommerce-backend/HEAD/Routs/attribute.js -------------------------------------------------------------------------------- /Routs/categories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandpatel504/Turing-ECommerce-backend/HEAD/Routs/categories.js -------------------------------------------------------------------------------- /Routs/customer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandpatel504/Turing-ECommerce-backend/HEAD/Routs/customer.js -------------------------------------------------------------------------------- /Routs/departments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandpatel504/Turing-ECommerce-backend/HEAD/Routs/departments.js -------------------------------------------------------------------------------- /Routs/oders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandpatel504/Turing-ECommerce-backend/HEAD/Routs/oders.js -------------------------------------------------------------------------------- /Routs/product.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandpatel504/Turing-ECommerce-backend/HEAD/Routs/product.js -------------------------------------------------------------------------------- /Routs/shipping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandpatel504/Turing-ECommerce-backend/HEAD/Routs/shipping.js -------------------------------------------------------------------------------- /Routs/shoppingcart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandpatel504/Turing-ECommerce-backend/HEAD/Routs/shoppingcart.js -------------------------------------------------------------------------------- /Routs/tax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandpatel504/Turing-ECommerce-backend/HEAD/Routs/tax.js -------------------------------------------------------------------------------- /database/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandpatel504/Turing-ECommerce-backend/HEAD/database/.DS_Store -------------------------------------------------------------------------------- /database/tshirtshop.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandpatel504/Turing-ECommerce-backend/HEAD/database/tshirtshop.sql -------------------------------------------------------------------------------- /database/turingdb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandpatel504/Turing-ECommerce-backend/HEAD/database/turingdb.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandpatel504/Turing-ECommerce-backend/HEAD/package.json -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandpatel504/Turing-ECommerce-backend/HEAD/server.js --------------------------------------------------------------------------------