├── CONTRIBUTING.md ├── README.md ├── api.py ├── controller.py ├── database.sqlite3 ├── db.py ├── main.py ├── model.py ├── requirements.txt ├── static ├── h.ico ├── pnnn.png ├── sty.css └── sty1.css ├── templates ├── add_category.html ├── add_product.html ├── admin_base.html ├── admin_dashboard.html ├── admin_signin.html ├── admin_summary.html ├── cart.html ├── edit_category.html ├── edit_profile.html ├── profile.html ├── search_results.html ├── signup.html ├── user_base.html ├── user_dashboard.html └── user_signin.html └── vercel.json /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syamkarni/Smart-Basket/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syamkarni/Smart-Basket/HEAD/README.md -------------------------------------------------------------------------------- /api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syamkarni/Smart-Basket/HEAD/api.py -------------------------------------------------------------------------------- /controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syamkarni/Smart-Basket/HEAD/controller.py -------------------------------------------------------------------------------- /database.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syamkarni/Smart-Basket/HEAD/database.sqlite3 -------------------------------------------------------------------------------- /db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syamkarni/Smart-Basket/HEAD/db.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syamkarni/Smart-Basket/HEAD/main.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syamkarni/Smart-Basket/HEAD/model.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syamkarni/Smart-Basket/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/h.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syamkarni/Smart-Basket/HEAD/static/h.ico -------------------------------------------------------------------------------- /static/pnnn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syamkarni/Smart-Basket/HEAD/static/pnnn.png -------------------------------------------------------------------------------- /static/sty.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syamkarni/Smart-Basket/HEAD/static/sty.css -------------------------------------------------------------------------------- /static/sty1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syamkarni/Smart-Basket/HEAD/static/sty1.css -------------------------------------------------------------------------------- /templates/add_category.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syamkarni/Smart-Basket/HEAD/templates/add_category.html -------------------------------------------------------------------------------- /templates/add_product.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syamkarni/Smart-Basket/HEAD/templates/add_product.html -------------------------------------------------------------------------------- /templates/admin_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syamkarni/Smart-Basket/HEAD/templates/admin_base.html -------------------------------------------------------------------------------- /templates/admin_dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syamkarni/Smart-Basket/HEAD/templates/admin_dashboard.html -------------------------------------------------------------------------------- /templates/admin_signin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syamkarni/Smart-Basket/HEAD/templates/admin_signin.html -------------------------------------------------------------------------------- /templates/admin_summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syamkarni/Smart-Basket/HEAD/templates/admin_summary.html -------------------------------------------------------------------------------- /templates/cart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syamkarni/Smart-Basket/HEAD/templates/cart.html -------------------------------------------------------------------------------- /templates/edit_category.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syamkarni/Smart-Basket/HEAD/templates/edit_category.html -------------------------------------------------------------------------------- /templates/edit_profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syamkarni/Smart-Basket/HEAD/templates/edit_profile.html -------------------------------------------------------------------------------- /templates/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syamkarni/Smart-Basket/HEAD/templates/profile.html -------------------------------------------------------------------------------- /templates/search_results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syamkarni/Smart-Basket/HEAD/templates/search_results.html -------------------------------------------------------------------------------- /templates/signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syamkarni/Smart-Basket/HEAD/templates/signup.html -------------------------------------------------------------------------------- /templates/user_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syamkarni/Smart-Basket/HEAD/templates/user_base.html -------------------------------------------------------------------------------- /templates/user_dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syamkarni/Smart-Basket/HEAD/templates/user_dashboard.html -------------------------------------------------------------------------------- /templates/user_signin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syamkarni/Smart-Basket/HEAD/templates/user_signin.html -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syamkarni/Smart-Basket/HEAD/vercel.json --------------------------------------------------------------------------------