├── .gitattributes ├── README.md ├── backend ├── .gitignore ├── account │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ ├── admin.cpython-38.pyc │ │ ├── apps.cpython-38.pyc │ │ ├── models.cpython-38.pyc │ │ ├── serializers.cpython-38.pyc │ │ ├── urls.cpython-38.pyc │ │ └── views.cpython-38.pyc │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20210617_1324.py │ │ ├── 0003_alter_stripemodel_card_number.py │ │ ├── 0004_stripemodel_email.py │ │ ├── 0005_alter_stripemodel_email.py │ │ ├── 0006_stripemodel_customer_id.py │ │ ├── 0007_rename_email_stripemodel_stripe_email.py │ │ ├── 0008_rename_stripe_email_stripemodel_email.py │ │ ├── 0009_auto_20210620_1217.py │ │ ├── 0010_billingaddress.py │ │ ├── 0011_billingaddress_user.py │ │ ├── 0012_alter_billingaddress_phone_number.py │ │ ├── 0013_ordermodel.py │ │ ├── 0014_alter_ordermodel_delivered_at.py │ │ ├── 0015_alter_ordermodel_delivered_at.py │ │ ├── 0016_alter_ordermodel_delivered_at.py │ │ ├── 0017_alter_ordermodel_delivered_at.py │ │ ├── 0018_auto_20210626_2049.py │ │ ├── 0019_auto_20210626_2106.py │ │ ├── 0020_alter_ordermodel_paid_at.py │ │ ├── 0021_alter_ordermodel_paid_at.py │ │ ├── 0022_remove_stripemodel_cvc.py │ │ ├── 0023_ordermodel_ordered_item.py │ │ ├── 0024_alter_ordermodel_paid_at.py │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ ├── 0001_initial.cpython-38.pyc │ │ │ ├── 0002_auto_20210617_1324.cpython-38.pyc │ │ │ ├── 0003_alter_stripemodel_card_number.cpython-38.pyc │ │ │ ├── 0004_stripemodel_email.cpython-38.pyc │ │ │ ├── 0005_alter_stripemodel_email.cpython-38.pyc │ │ │ ├── 0006_stripemodel_customer_id.cpython-38.pyc │ │ │ ├── 0007_rename_email_stripemodel_stripe_email.cpython-38.pyc │ │ │ ├── 0008_rename_stripe_email_stripemodel_email.cpython-38.pyc │ │ │ ├── 0009_auto_20210620_1217.cpython-38.pyc │ │ │ ├── 0010_billingaddress.cpython-38.pyc │ │ │ ├── 0011_billingaddress_user.cpython-38.pyc │ │ │ ├── 0012_alter_billingaddress_phone_number.cpython-38.pyc │ │ │ ├── 0013_ordermodel.cpython-38.pyc │ │ │ ├── 0014_alter_ordermodel_delivered_at.cpython-38.pyc │ │ │ ├── 0015_alter_ordermodel_delivered_at.cpython-38.pyc │ │ │ ├── 0016_alter_ordermodel_delivered_at.cpython-38.pyc │ │ │ ├── 0017_alter_ordermodel_delivered_at.cpython-38.pyc │ │ │ ├── 0018_auto_20210626_2049.cpython-38.pyc │ │ │ ├── 0019_auto_20210626_2106.cpython-38.pyc │ │ │ ├── 0020_alter_ordermodel_paid_at.cpython-38.pyc │ │ │ ├── 0021_alter_ordermodel_paid_at.cpython-38.pyc │ │ │ ├── 0022_remove_stripemodel_cvc.cpython-38.pyc │ │ │ ├── 0023_ordermodel_ordered_item.cpython-38.pyc │ │ │ ├── 0024_alter_ordermodel_paid_at.cpython-38.pyc │ │ │ └── __init__.cpython-38.pyc │ ├── models.py │ ├── serializers.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── db.sqlite3 ├── manage.py ├── my_project │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ ├── settings.cpython-38.pyc │ │ ├── urls.cpython-38.pyc │ │ └── wsgi.cpython-38.pyc │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── payments │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ ├── admin.cpython-38.pyc │ │ ├── apps.cpython-38.pyc │ │ ├── models.cpython-38.pyc │ │ ├── urls.cpython-38.pyc │ │ └── views.cpython-38.pyc │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ └── __init__.cpython-38.pyc │ ├── models.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── product │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ ├── admin.cpython-38.pyc │ │ ├── apps.cpython-38.pyc │ │ ├── models.cpython-38.pyc │ │ ├── serializers.cpython-38.pyc │ │ ├── urls.cpython-38.pyc │ │ └── views.cpython-38.pyc │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_alter_product_price.py │ │ ├── 0003_product_user.py │ │ ├── 0004_remove_product_user.py │ │ ├── 0005_alter_product_image.py │ │ ├── 0006_alter_product_image.py │ │ ├── 0007_alter_product_image.py │ │ ├── 0008_alter_product_image.py │ │ ├── 0009_alter_product_image.py │ │ ├── 0010_alter_product_image.py │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ ├── 0001_initial.cpython-38.pyc │ │ │ ├── 0002_alter_product_price.cpython-38.pyc │ │ │ ├── 0003_product_user.cpython-38.pyc │ │ │ ├── 0004_remove_product_user.cpython-38.pyc │ │ │ ├── 0005_alter_product_image.cpython-38.pyc │ │ │ ├── 0006_alter_product_image.cpython-38.pyc │ │ │ ├── 0007_alter_product_image.cpython-38.pyc │ │ │ ├── 0008_alter_product_image.cpython-38.pyc │ │ │ ├── 0009_alter_product_image.cpython-38.pyc │ │ │ ├── 0010_alter_product_image.cpython-38.pyc │ │ │ └── __init__.cpython-38.pyc │ ├── models.py │ ├── serializers.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── requirements.txt └── static │ └── images │ ├── Playstation_5.jpg │ ├── Playstation_5_Z007MgD.jpg │ ├── Playstation_5_dCJyLre.jpg │ ├── apple_ipad_0UhZVkV.jpg │ ├── bolt_headphones.jpg │ ├── bolt_headphones_brgxLAy.jpg │ ├── bolt_headphones_rKKjIIT.jpg │ ├── computer_chair.jpg │ ├── computer_chair_WX9xOos.jpg │ ├── final_welcome_page_articles_app_1.jpg │ ├── gaming_mouse.jpg │ ├── keyboard.jpg │ ├── keyboard_6I3SnA1.jpg │ ├── keyboard_i3mKNJo.jpg │ ├── laptop.jpg │ ├── laptop_W0rdEyw.jpg │ ├── no_preview_image.png │ ├── pencils.jpg │ ├── react_image.png │ └── welcome_page.jpg └── frontend ├── README.md ├── package-lock.json ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt └── src ├── App.css ├── App.js ├── actions ├── cardActions.js ├── productActions.js └── userActions.js ├── components ├── ChargeCardComponent.js ├── CreateAddressComponent.js ├── CreateCardComponent.js ├── DeleteCardComponent.js ├── GetDate.js ├── Message.js ├── Navbar.js ├── PaymentStatus.js ├── Product.js ├── SearchBarForOrdersPage.js ├── SearchBarForProducts.js └── UserAddressComponent.js ├── constants └── index.js ├── index.js ├── pages ├── AccountPage.js ├── AccountUpdatePage.js ├── AddressUpdatePage.js ├── AllAddressesOfUserPage.js ├── CardDetailsPage.js ├── CardUpdatePage.js ├── CheckoutPage.js ├── DeleteUserAccountPage.js ├── LoginPage.js ├── NotFoundPage.js ├── OrdersListPage.js ├── ProductCreatePage.js ├── ProductDetailsPage.js ├── ProductUpdatePage.js ├── ProductsListPage.js └── RegisterPage.js ├── reducers ├── cardReducers.js ├── index.js ├── productReducers.js └── userReducers.js └── store.js /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/.gitattributes -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/README.md -------------------------------------------------------------------------------- /backend/.gitignore: -------------------------------------------------------------------------------- 1 | env/ 2 | node_modules/ -------------------------------------------------------------------------------- /backend/account/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/account/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/account/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /backend/account/__pycache__/admin.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/account/__pycache__/admin.cpython-38.pyc -------------------------------------------------------------------------------- /backend/account/__pycache__/apps.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/account/__pycache__/apps.cpython-38.pyc -------------------------------------------------------------------------------- /backend/account/__pycache__/models.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/account/__pycache__/models.cpython-38.pyc -------------------------------------------------------------------------------- /backend/account/__pycache__/serializers.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/account/__pycache__/serializers.cpython-38.pyc -------------------------------------------------------------------------------- /backend/account/__pycache__/urls.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/account/__pycache__/urls.cpython-38.pyc -------------------------------------------------------------------------------- /backend/account/__pycache__/views.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/account/__pycache__/views.cpython-38.pyc -------------------------------------------------------------------------------- /backend/account/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/account/admin.py -------------------------------------------------------------------------------- /backend/account/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/account/apps.py -------------------------------------------------------------------------------- /backend/account/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/account/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/account/migrations/0002_auto_20210617_1324.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/account/migrations/0002_auto_20210617_1324.py -------------------------------------------------------------------------------- /backend/account/migrations/0003_alter_stripemodel_card_number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/account/migrations/0003_alter_stripemodel_card_number.py -------------------------------------------------------------------------------- /backend/account/migrations/0004_stripemodel_email.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/account/migrations/0004_stripemodel_email.py -------------------------------------------------------------------------------- /backend/account/migrations/0005_alter_stripemodel_email.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/account/migrations/0005_alter_stripemodel_email.py -------------------------------------------------------------------------------- /backend/account/migrations/0006_stripemodel_customer_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/account/migrations/0006_stripemodel_customer_id.py -------------------------------------------------------------------------------- /backend/account/migrations/0007_rename_email_stripemodel_stripe_email.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/account/migrations/0007_rename_email_stripemodel_stripe_email.py -------------------------------------------------------------------------------- /backend/account/migrations/0008_rename_stripe_email_stripemodel_email.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/account/migrations/0008_rename_stripe_email_stripemodel_email.py -------------------------------------------------------------------------------- /backend/account/migrations/0009_auto_20210620_1217.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/account/migrations/0009_auto_20210620_1217.py -------------------------------------------------------------------------------- /backend/account/migrations/0010_billingaddress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/account/migrations/0010_billingaddress.py -------------------------------------------------------------------------------- /backend/account/migrations/0011_billingaddress_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/account/migrations/0011_billingaddress_user.py -------------------------------------------------------------------------------- /backend/account/migrations/0012_alter_billingaddress_phone_number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/account/migrations/0012_alter_billingaddress_phone_number.py -------------------------------------------------------------------------------- /backend/account/migrations/0013_ordermodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/account/migrations/0013_ordermodel.py -------------------------------------------------------------------------------- /backend/account/migrations/0014_alter_ordermodel_delivered_at.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/account/migrations/0014_alter_ordermodel_delivered_at.py -------------------------------------------------------------------------------- /backend/account/migrations/0015_alter_ordermodel_delivered_at.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/account/migrations/0015_alter_ordermodel_delivered_at.py -------------------------------------------------------------------------------- /backend/account/migrations/0016_alter_ordermodel_delivered_at.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/account/migrations/0016_alter_ordermodel_delivered_at.py -------------------------------------------------------------------------------- /backend/account/migrations/0017_alter_ordermodel_delivered_at.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/account/migrations/0017_alter_ordermodel_delivered_at.py -------------------------------------------------------------------------------- /backend/account/migrations/0018_auto_20210626_2049.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/account/migrations/0018_auto_20210626_2049.py -------------------------------------------------------------------------------- /backend/account/migrations/0019_auto_20210626_2106.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/account/migrations/0019_auto_20210626_2106.py -------------------------------------------------------------------------------- /backend/account/migrations/0020_alter_ordermodel_paid_at.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/account/migrations/0020_alter_ordermodel_paid_at.py -------------------------------------------------------------------------------- /backend/account/migrations/0021_alter_ordermodel_paid_at.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/account/migrations/0021_alter_ordermodel_paid_at.py -------------------------------------------------------------------------------- /backend/account/migrations/0022_remove_stripemodel_cvc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/account/migrations/0022_remove_stripemodel_cvc.py -------------------------------------------------------------------------------- /backend/account/migrations/0023_ordermodel_ordered_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/account/migrations/0023_ordermodel_ordered_item.py -------------------------------------------------------------------------------- /backend/account/migrations/0024_alter_ordermodel_paid_at.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/account/migrations/0024_alter_ordermodel_paid_at.py -------------------------------------------------------------------------------- /backend/account/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/account/migrations/__pycache__/0001_initial.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/account/migrations/__pycache__/0001_initial.cpython-38.pyc -------------------------------------------------------------------------------- /backend/account/migrations/__pycache__/0002_auto_20210617_1324.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/account/migrations/__pycache__/0002_auto_20210617_1324.cpython-38.pyc -------------------------------------------------------------------------------- /backend/account/migrations/__pycache__/0003_alter_stripemodel_card_number.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/account/migrations/__pycache__/0003_alter_stripemodel_card_number.cpython-38.pyc -------------------------------------------------------------------------------- /backend/account/migrations/__pycache__/0004_stripemodel_email.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/account/migrations/__pycache__/0004_stripemodel_email.cpython-38.pyc -------------------------------------------------------------------------------- /backend/account/migrations/__pycache__/0005_alter_stripemodel_email.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/account/migrations/__pycache__/0005_alter_stripemodel_email.cpython-38.pyc -------------------------------------------------------------------------------- /backend/account/migrations/__pycache__/0006_stripemodel_customer_id.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/account/migrations/__pycache__/0006_stripemodel_customer_id.cpython-38.pyc -------------------------------------------------------------------------------- /backend/account/migrations/__pycache__/0007_rename_email_stripemodel_stripe_email.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/account/migrations/__pycache__/0007_rename_email_stripemodel_stripe_email.cpython-38.pyc -------------------------------------------------------------------------------- /backend/account/migrations/__pycache__/0008_rename_stripe_email_stripemodel_email.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/account/migrations/__pycache__/0008_rename_stripe_email_stripemodel_email.cpython-38.pyc -------------------------------------------------------------------------------- /backend/account/migrations/__pycache__/0009_auto_20210620_1217.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/account/migrations/__pycache__/0009_auto_20210620_1217.cpython-38.pyc -------------------------------------------------------------------------------- /backend/account/migrations/__pycache__/0010_billingaddress.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/account/migrations/__pycache__/0010_billingaddress.cpython-38.pyc -------------------------------------------------------------------------------- /backend/account/migrations/__pycache__/0011_billingaddress_user.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/account/migrations/__pycache__/0011_billingaddress_user.cpython-38.pyc -------------------------------------------------------------------------------- /backend/account/migrations/__pycache__/0012_alter_billingaddress_phone_number.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/account/migrations/__pycache__/0012_alter_billingaddress_phone_number.cpython-38.pyc -------------------------------------------------------------------------------- /backend/account/migrations/__pycache__/0013_ordermodel.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/account/migrations/__pycache__/0013_ordermodel.cpython-38.pyc -------------------------------------------------------------------------------- /backend/account/migrations/__pycache__/0014_alter_ordermodel_delivered_at.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/account/migrations/__pycache__/0014_alter_ordermodel_delivered_at.cpython-38.pyc -------------------------------------------------------------------------------- /backend/account/migrations/__pycache__/0015_alter_ordermodel_delivered_at.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/account/migrations/__pycache__/0015_alter_ordermodel_delivered_at.cpython-38.pyc -------------------------------------------------------------------------------- /backend/account/migrations/__pycache__/0016_alter_ordermodel_delivered_at.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/account/migrations/__pycache__/0016_alter_ordermodel_delivered_at.cpython-38.pyc -------------------------------------------------------------------------------- /backend/account/migrations/__pycache__/0017_alter_ordermodel_delivered_at.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/account/migrations/__pycache__/0017_alter_ordermodel_delivered_at.cpython-38.pyc -------------------------------------------------------------------------------- /backend/account/migrations/__pycache__/0018_auto_20210626_2049.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/account/migrations/__pycache__/0018_auto_20210626_2049.cpython-38.pyc -------------------------------------------------------------------------------- /backend/account/migrations/__pycache__/0019_auto_20210626_2106.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/account/migrations/__pycache__/0019_auto_20210626_2106.cpython-38.pyc -------------------------------------------------------------------------------- /backend/account/migrations/__pycache__/0020_alter_ordermodel_paid_at.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/account/migrations/__pycache__/0020_alter_ordermodel_paid_at.cpython-38.pyc -------------------------------------------------------------------------------- /backend/account/migrations/__pycache__/0021_alter_ordermodel_paid_at.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/account/migrations/__pycache__/0021_alter_ordermodel_paid_at.cpython-38.pyc -------------------------------------------------------------------------------- /backend/account/migrations/__pycache__/0022_remove_stripemodel_cvc.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/account/migrations/__pycache__/0022_remove_stripemodel_cvc.cpython-38.pyc -------------------------------------------------------------------------------- /backend/account/migrations/__pycache__/0023_ordermodel_ordered_item.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/account/migrations/__pycache__/0023_ordermodel_ordered_item.cpython-38.pyc -------------------------------------------------------------------------------- /backend/account/migrations/__pycache__/0024_alter_ordermodel_paid_at.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/account/migrations/__pycache__/0024_alter_ordermodel_paid_at.cpython-38.pyc -------------------------------------------------------------------------------- /backend/account/migrations/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/account/migrations/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /backend/account/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/account/models.py -------------------------------------------------------------------------------- /backend/account/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/account/serializers.py -------------------------------------------------------------------------------- /backend/account/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/account/tests.py -------------------------------------------------------------------------------- /backend/account/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/account/urls.py -------------------------------------------------------------------------------- /backend/account/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/account/views.py -------------------------------------------------------------------------------- /backend/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/db.sqlite3 -------------------------------------------------------------------------------- /backend/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/manage.py -------------------------------------------------------------------------------- /backend/my_project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/my_project/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/my_project/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /backend/my_project/__pycache__/settings.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/my_project/__pycache__/settings.cpython-38.pyc -------------------------------------------------------------------------------- /backend/my_project/__pycache__/urls.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/my_project/__pycache__/urls.cpython-38.pyc -------------------------------------------------------------------------------- /backend/my_project/__pycache__/wsgi.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/my_project/__pycache__/wsgi.cpython-38.pyc -------------------------------------------------------------------------------- /backend/my_project/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/my_project/asgi.py -------------------------------------------------------------------------------- /backend/my_project/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/my_project/settings.py -------------------------------------------------------------------------------- /backend/my_project/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/my_project/urls.py -------------------------------------------------------------------------------- /backend/my_project/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/my_project/wsgi.py -------------------------------------------------------------------------------- /backend/payments/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/payments/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/payments/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /backend/payments/__pycache__/admin.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/payments/__pycache__/admin.cpython-38.pyc -------------------------------------------------------------------------------- /backend/payments/__pycache__/apps.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/payments/__pycache__/apps.cpython-38.pyc -------------------------------------------------------------------------------- /backend/payments/__pycache__/models.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/payments/__pycache__/models.cpython-38.pyc -------------------------------------------------------------------------------- /backend/payments/__pycache__/urls.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/payments/__pycache__/urls.cpython-38.pyc -------------------------------------------------------------------------------- /backend/payments/__pycache__/views.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/payments/__pycache__/views.cpython-38.pyc -------------------------------------------------------------------------------- /backend/payments/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/payments/admin.py -------------------------------------------------------------------------------- /backend/payments/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/payments/apps.py -------------------------------------------------------------------------------- /backend/payments/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/payments/migrations/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/payments/migrations/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /backend/payments/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/payments/models.py -------------------------------------------------------------------------------- /backend/payments/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/payments/tests.py -------------------------------------------------------------------------------- /backend/payments/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/payments/urls.py -------------------------------------------------------------------------------- /backend/payments/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/payments/views.py -------------------------------------------------------------------------------- /backend/product/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/product/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/product/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /backend/product/__pycache__/admin.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/product/__pycache__/admin.cpython-38.pyc -------------------------------------------------------------------------------- /backend/product/__pycache__/apps.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/product/__pycache__/apps.cpython-38.pyc -------------------------------------------------------------------------------- /backend/product/__pycache__/models.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/product/__pycache__/models.cpython-38.pyc -------------------------------------------------------------------------------- /backend/product/__pycache__/serializers.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/product/__pycache__/serializers.cpython-38.pyc -------------------------------------------------------------------------------- /backend/product/__pycache__/urls.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/product/__pycache__/urls.cpython-38.pyc -------------------------------------------------------------------------------- /backend/product/__pycache__/views.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/product/__pycache__/views.cpython-38.pyc -------------------------------------------------------------------------------- /backend/product/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/product/admin.py -------------------------------------------------------------------------------- /backend/product/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/product/apps.py -------------------------------------------------------------------------------- /backend/product/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/product/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/product/migrations/0002_alter_product_price.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/product/migrations/0002_alter_product_price.py -------------------------------------------------------------------------------- /backend/product/migrations/0003_product_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/product/migrations/0003_product_user.py -------------------------------------------------------------------------------- /backend/product/migrations/0004_remove_product_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/product/migrations/0004_remove_product_user.py -------------------------------------------------------------------------------- /backend/product/migrations/0005_alter_product_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/product/migrations/0005_alter_product_image.py -------------------------------------------------------------------------------- /backend/product/migrations/0006_alter_product_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/product/migrations/0006_alter_product_image.py -------------------------------------------------------------------------------- /backend/product/migrations/0007_alter_product_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/product/migrations/0007_alter_product_image.py -------------------------------------------------------------------------------- /backend/product/migrations/0008_alter_product_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/product/migrations/0008_alter_product_image.py -------------------------------------------------------------------------------- /backend/product/migrations/0009_alter_product_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/product/migrations/0009_alter_product_image.py -------------------------------------------------------------------------------- /backend/product/migrations/0010_alter_product_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/product/migrations/0010_alter_product_image.py -------------------------------------------------------------------------------- /backend/product/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/product/migrations/__pycache__/0001_initial.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/product/migrations/__pycache__/0001_initial.cpython-38.pyc -------------------------------------------------------------------------------- /backend/product/migrations/__pycache__/0002_alter_product_price.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/product/migrations/__pycache__/0002_alter_product_price.cpython-38.pyc -------------------------------------------------------------------------------- /backend/product/migrations/__pycache__/0003_product_user.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/product/migrations/__pycache__/0003_product_user.cpython-38.pyc -------------------------------------------------------------------------------- /backend/product/migrations/__pycache__/0004_remove_product_user.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/product/migrations/__pycache__/0004_remove_product_user.cpython-38.pyc -------------------------------------------------------------------------------- /backend/product/migrations/__pycache__/0005_alter_product_image.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/product/migrations/__pycache__/0005_alter_product_image.cpython-38.pyc -------------------------------------------------------------------------------- /backend/product/migrations/__pycache__/0006_alter_product_image.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/product/migrations/__pycache__/0006_alter_product_image.cpython-38.pyc -------------------------------------------------------------------------------- /backend/product/migrations/__pycache__/0007_alter_product_image.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/product/migrations/__pycache__/0007_alter_product_image.cpython-38.pyc -------------------------------------------------------------------------------- /backend/product/migrations/__pycache__/0008_alter_product_image.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/product/migrations/__pycache__/0008_alter_product_image.cpython-38.pyc -------------------------------------------------------------------------------- /backend/product/migrations/__pycache__/0009_alter_product_image.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/product/migrations/__pycache__/0009_alter_product_image.cpython-38.pyc -------------------------------------------------------------------------------- /backend/product/migrations/__pycache__/0010_alter_product_image.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/product/migrations/__pycache__/0010_alter_product_image.cpython-38.pyc -------------------------------------------------------------------------------- /backend/product/migrations/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/product/migrations/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /backend/product/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/product/models.py -------------------------------------------------------------------------------- /backend/product/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/product/serializers.py -------------------------------------------------------------------------------- /backend/product/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/product/tests.py -------------------------------------------------------------------------------- /backend/product/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/product/urls.py -------------------------------------------------------------------------------- /backend/product/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/product/views.py -------------------------------------------------------------------------------- /backend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/requirements.txt -------------------------------------------------------------------------------- /backend/static/images/Playstation_5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/static/images/Playstation_5.jpg -------------------------------------------------------------------------------- /backend/static/images/Playstation_5_Z007MgD.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/static/images/Playstation_5_Z007MgD.jpg -------------------------------------------------------------------------------- /backend/static/images/Playstation_5_dCJyLre.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/static/images/Playstation_5_dCJyLre.jpg -------------------------------------------------------------------------------- /backend/static/images/apple_ipad_0UhZVkV.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/static/images/apple_ipad_0UhZVkV.jpg -------------------------------------------------------------------------------- /backend/static/images/bolt_headphones.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/static/images/bolt_headphones.jpg -------------------------------------------------------------------------------- /backend/static/images/bolt_headphones_brgxLAy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/static/images/bolt_headphones_brgxLAy.jpg -------------------------------------------------------------------------------- /backend/static/images/bolt_headphones_rKKjIIT.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/static/images/bolt_headphones_rKKjIIT.jpg -------------------------------------------------------------------------------- /backend/static/images/computer_chair.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/static/images/computer_chair.jpg -------------------------------------------------------------------------------- /backend/static/images/computer_chair_WX9xOos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/static/images/computer_chair_WX9xOos.jpg -------------------------------------------------------------------------------- /backend/static/images/final_welcome_page_articles_app_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/static/images/final_welcome_page_articles_app_1.jpg -------------------------------------------------------------------------------- /backend/static/images/gaming_mouse.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/static/images/gaming_mouse.jpg -------------------------------------------------------------------------------- /backend/static/images/keyboard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/static/images/keyboard.jpg -------------------------------------------------------------------------------- /backend/static/images/keyboard_6I3SnA1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/static/images/keyboard_6I3SnA1.jpg -------------------------------------------------------------------------------- /backend/static/images/keyboard_i3mKNJo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/static/images/keyboard_i3mKNJo.jpg -------------------------------------------------------------------------------- /backend/static/images/laptop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/static/images/laptop.jpg -------------------------------------------------------------------------------- /backend/static/images/laptop_W0rdEyw.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/static/images/laptop_W0rdEyw.jpg -------------------------------------------------------------------------------- /backend/static/images/no_preview_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/static/images/no_preview_image.png -------------------------------------------------------------------------------- /backend/static/images/pencils.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/static/images/pencils.jpg -------------------------------------------------------------------------------- /backend/static/images/react_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/static/images/react_image.png -------------------------------------------------------------------------------- /backend/static/images/welcome_page.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/backend/static/images/welcome_page.jpg -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/frontend/README.md -------------------------------------------------------------------------------- /frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/frontend/package-lock.json -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/frontend/public/favicon.ico -------------------------------------------------------------------------------- /frontend/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/frontend/public/index.html -------------------------------------------------------------------------------- /frontend/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/frontend/public/logo192.png -------------------------------------------------------------------------------- /frontend/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/frontend/public/logo512.png -------------------------------------------------------------------------------- /frontend/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/frontend/public/manifest.json -------------------------------------------------------------------------------- /frontend/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/frontend/public/robots.txt -------------------------------------------------------------------------------- /frontend/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/frontend/src/App.css -------------------------------------------------------------------------------- /frontend/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/frontend/src/App.js -------------------------------------------------------------------------------- /frontend/src/actions/cardActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/frontend/src/actions/cardActions.js -------------------------------------------------------------------------------- /frontend/src/actions/productActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/frontend/src/actions/productActions.js -------------------------------------------------------------------------------- /frontend/src/actions/userActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/frontend/src/actions/userActions.js -------------------------------------------------------------------------------- /frontend/src/components/ChargeCardComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/frontend/src/components/ChargeCardComponent.js -------------------------------------------------------------------------------- /frontend/src/components/CreateAddressComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/frontend/src/components/CreateAddressComponent.js -------------------------------------------------------------------------------- /frontend/src/components/CreateCardComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/frontend/src/components/CreateCardComponent.js -------------------------------------------------------------------------------- /frontend/src/components/DeleteCardComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/frontend/src/components/DeleteCardComponent.js -------------------------------------------------------------------------------- /frontend/src/components/GetDate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/frontend/src/components/GetDate.js -------------------------------------------------------------------------------- /frontend/src/components/Message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/frontend/src/components/Message.js -------------------------------------------------------------------------------- /frontend/src/components/Navbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/frontend/src/components/Navbar.js -------------------------------------------------------------------------------- /frontend/src/components/PaymentStatus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/frontend/src/components/PaymentStatus.js -------------------------------------------------------------------------------- /frontend/src/components/Product.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/frontend/src/components/Product.js -------------------------------------------------------------------------------- /frontend/src/components/SearchBarForOrdersPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/frontend/src/components/SearchBarForOrdersPage.js -------------------------------------------------------------------------------- /frontend/src/components/SearchBarForProducts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/frontend/src/components/SearchBarForProducts.js -------------------------------------------------------------------------------- /frontend/src/components/UserAddressComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/frontend/src/components/UserAddressComponent.js -------------------------------------------------------------------------------- /frontend/src/constants/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/frontend/src/constants/index.js -------------------------------------------------------------------------------- /frontend/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/frontend/src/index.js -------------------------------------------------------------------------------- /frontend/src/pages/AccountPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/frontend/src/pages/AccountPage.js -------------------------------------------------------------------------------- /frontend/src/pages/AccountUpdatePage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/frontend/src/pages/AccountUpdatePage.js -------------------------------------------------------------------------------- /frontend/src/pages/AddressUpdatePage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/frontend/src/pages/AddressUpdatePage.js -------------------------------------------------------------------------------- /frontend/src/pages/AllAddressesOfUserPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/frontend/src/pages/AllAddressesOfUserPage.js -------------------------------------------------------------------------------- /frontend/src/pages/CardDetailsPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/frontend/src/pages/CardDetailsPage.js -------------------------------------------------------------------------------- /frontend/src/pages/CardUpdatePage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/frontend/src/pages/CardUpdatePage.js -------------------------------------------------------------------------------- /frontend/src/pages/CheckoutPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/frontend/src/pages/CheckoutPage.js -------------------------------------------------------------------------------- /frontend/src/pages/DeleteUserAccountPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/frontend/src/pages/DeleteUserAccountPage.js -------------------------------------------------------------------------------- /frontend/src/pages/LoginPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/frontend/src/pages/LoginPage.js -------------------------------------------------------------------------------- /frontend/src/pages/NotFoundPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/frontend/src/pages/NotFoundPage.js -------------------------------------------------------------------------------- /frontend/src/pages/OrdersListPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/frontend/src/pages/OrdersListPage.js -------------------------------------------------------------------------------- /frontend/src/pages/ProductCreatePage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/frontend/src/pages/ProductCreatePage.js -------------------------------------------------------------------------------- /frontend/src/pages/ProductDetailsPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/frontend/src/pages/ProductDetailsPage.js -------------------------------------------------------------------------------- /frontend/src/pages/ProductUpdatePage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/frontend/src/pages/ProductUpdatePage.js -------------------------------------------------------------------------------- /frontend/src/pages/ProductsListPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/frontend/src/pages/ProductsListPage.js -------------------------------------------------------------------------------- /frontend/src/pages/RegisterPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/frontend/src/pages/RegisterPage.js -------------------------------------------------------------------------------- /frontend/src/reducers/cardReducers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/frontend/src/reducers/cardReducers.js -------------------------------------------------------------------------------- /frontend/src/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/frontend/src/reducers/index.js -------------------------------------------------------------------------------- /frontend/src/reducers/productReducers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/frontend/src/reducers/productReducers.js -------------------------------------------------------------------------------- /frontend/src/reducers/userReducers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/frontend/src/reducers/userReducers.js -------------------------------------------------------------------------------- /frontend/src/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashMarmat/FullStack_Ecommerce_App/HEAD/frontend/src/store.js --------------------------------------------------------------------------------