├── .deepsource.toml ├── .dockerignore ├── .env.example ├── .github └── workflows │ ├── backend-test.yaml │ ├── deploy-client.yaml │ ├── gcp-deploy.yaml │ └── pre-commit.yaml ├── .gitignore ├── .isort.cfg ├── .pre-commit-config.yaml ├── .vscode └── settings.json ├── Makefile ├── README.md ├── backend ├── .coveragerc ├── Dockerfile ├── alembic.ini ├── alembic │ ├── README │ ├── env.py │ ├── script.py.mako │ └── versions │ │ ├── 44d8bafa7c91_models.py │ │ └── 9b7f9e3d9069_soft_delete.py ├── app │ ├── __init__.py │ ├── api │ │ ├── __init__.py │ │ ├── admins.py │ │ ├── authentications.py │ │ ├── banners.py │ │ ├── carts.py │ │ ├── categories.py │ │ ├── homes.py │ │ ├── orders.py │ │ ├── products.py │ │ ├── searches.py │ │ ├── users.py │ │ └── wishlists.py │ ├── core │ │ ├── config.py │ │ └── logger.py │ ├── db.py │ ├── deps │ │ ├── authentication.py │ │ ├── db.py │ │ ├── google_cloud.py │ │ ├── image_base64.py │ │ ├── send_email.py │ │ ├── sql_error.py │ │ └── templates │ │ │ ├── checkout_order.html │ │ │ └── forgot_password.html │ ├── factory.py │ ├── image_classification │ │ ├── development │ │ │ ├── Per_Class_Augmentation.ipynb │ │ │ ├── SOP-AI.md │ │ │ ├── convert_mnist_jpg.py │ │ │ ├── explore_dataset.ipynb │ │ │ └── main.py │ │ ├── pipeline │ │ │ ├── Model_Testing.ipynb │ │ │ ├── __init__.py │ │ │ ├── main.py │ │ │ ├── model.pth │ │ │ └── model.py │ │ ├── requirements.txt │ │ └── utils │ │ │ └── load_mnist.py │ ├── models │ │ ├── __init__.py │ │ ├── banner.py │ │ ├── cart.py │ │ ├── category.py │ │ ├── default.py │ │ ├── forgot_password.py │ │ ├── image.py │ │ ├── order.py │ │ ├── order_item.py │ │ ├── product.py │ │ ├── product_image.py │ │ ├── product_size_quantity.py │ │ ├── size.py │ │ ├── user.py │ │ └── wishlist.py │ ├── schemas │ │ ├── admin.py │ │ ├── authentication.py │ │ ├── banner.py │ │ ├── cart.py │ │ ├── category.py │ │ ├── default_model.py │ │ ├── home.py │ │ ├── order.py │ │ ├── product.py │ │ ├── search.py │ │ ├── user.py │ │ └── wishlist.py │ ├── seeders │ │ ├── __init__.py │ │ ├── banner_seeder.py │ │ ├── cart_seeder.py │ │ ├── category_seeder.py │ │ ├── image_seeder.py │ │ ├── order_item_seeder.py │ │ ├── order_seeder.py │ │ ├── product_image_seeder.py │ │ ├── product_seeder.py │ │ ├── product_size_quantity_seeder.py │ │ ├── seeder.py │ │ ├── size_seeder.py │ │ ├── user_seeder.py │ │ └── wishlist_seeder.py │ └── util │ │ ├── __init__.py │ │ ├── dearchive.py │ │ └── drop-tables.py ├── backend │ └── env.py ├── main.py ├── poetry.lock ├── pyproject.toml ├── shell.py ├── sql │ ├── extension │ │ └── extension.sql │ ├── rule_soft_delete.sql │ ├── soft_delete.sql │ └── update_at.sql ├── static │ ├── favicon.ico │ ├── index.html │ └── style.css └── tests │ ├── __init__.py │ ├── apis │ ├── __init__.py │ ├── test_admins.py │ ├── test_authentications.py │ ├── test_banners.py │ ├── test_carts.py │ ├── test_categories.py │ ├── test_homes.py │ ├── test_orders.py │ ├── test_products.py │ ├── test_searches.py │ ├── test_users.py │ └── test_wishlists.py │ ├── conftest.py │ ├── fixtures │ ├── image.py │ ├── insert_data.py │ └── test_image.jpeg │ ├── integrations │ ├── test_admin_category.py │ ├── test_user_auth.py │ ├── test_user_order.py │ └── test_user_wishlist.py │ ├── models │ ├── test_banner.py │ ├── test_cart.py │ ├── test_category.py │ ├── test_image.py │ ├── test_order.py │ ├── test_order_item.py │ ├── test_product.py │ ├── test_product_image.py │ ├── test_product_size_quantity.py │ ├── test_size.py │ ├── test_user.py │ └── test_wishlist.py │ └── utils.py ├── docker-compose.ci.yml ├── docker-compose.override.yml ├── docker-compose.prod.yml ├── docker-compose.yml └── frontend ├── .dockerignore ├── .eslintrc.js ├── .gitignore ├── .prettierrc ├── Dockerfile ├── index.html ├── nginx.conf ├── openapi.json ├── package-lock.json ├── package.json ├── pnpm-lock.yaml ├── postcss.config.cjs ├── public ├── img │ ├── 404.svg │ └── coding.svg ├── logo192.png ├── logo512.png ├── manifest.json ├── robots.txt ├── tutu.ico └── tutu.png ├── src ├── App.tsx ├── api │ ├── core │ │ ├── ApiError.ts │ │ ├── ApiRequestOptions.ts │ │ ├── ApiResult.ts │ │ ├── CancelablePromise.ts │ │ ├── OpenAPI.ts │ │ └── request.ts │ ├── index.ts │ ├── models │ │ ├── Banner.ts │ │ ├── BestSeller.ts │ │ ├── Body_sign_in_v1_sign_in_post.ts │ │ ├── Category.ts │ │ ├── CategoryOrder.ts │ │ ├── ChangePassword.ts │ │ ├── CreateBanner.ts │ │ ├── CreateCart.ts │ │ ├── CreateCategory.ts │ │ ├── CreateOrder.ts │ │ ├── CreateProduct.ts │ │ ├── Customer.ts │ │ ├── DefaultResponse.ts │ │ ├── DetailCategory.ts │ │ ├── GetAdminOrder.ts │ │ ├── GetAdminOrders.ts │ │ ├── GetBanners.ts │ │ ├── GetBestSeller.ts │ │ ├── GetCart.ts │ │ ├── GetCategories.ts │ │ ├── GetCategory.ts │ │ ├── GetCustomers.ts │ │ ├── GetDashboard.ts │ │ ├── GetDetailOrder.ts │ │ ├── GetImage.ts │ │ ├── GetOrder.ts │ │ ├── GetProductDetail.ts │ │ ├── GetProductDetails.ts │ │ ├── GetSales.ts │ │ ├── GetShippingPrice.ts │ │ ├── GetShippingPrices.ts │ │ ├── GetUser.ts │ │ ├── GetUserAddress.ts │ │ ├── GetUserBalance.ts │ │ ├── GetUserProductDetails.ts │ │ ├── GetUserProducts.ts │ │ ├── GetWishlist.ts │ │ ├── HTTPValidationError.ts │ │ ├── IncomeMonth.ts │ │ ├── Order.ts │ │ ├── OrderAddress.ts │ │ ├── Pagination.ts │ │ ├── Product.ts │ │ ├── PutUserAddress.ts │ │ ├── PutUserBalance.ts │ │ ├── ResetPassword.ts │ │ ├── Sales.ts │ │ ├── SearchImage.ts │ │ ├── SearchImageResponse.ts │ │ ├── SearchText.ts │ │ ├── ShowerThoughts.ts │ │ ├── Stock.ts │ │ ├── UpdateBanner.ts │ │ ├── UpdateCart.ts │ │ ├── UpdateCategory.ts │ │ ├── UpdateProduct.ts │ │ ├── UpdateStock.ts │ │ ├── UserCreate.ts │ │ ├── UserRead.ts │ │ ├── ValidationError.ts │ │ ├── app__schemas__admin__GetOrders.ts │ │ ├── app__schemas__cart__GetProduct.ts │ │ ├── app__schemas__product__GetProduct.ts │ │ ├── app__schemas__product__GetProducts.ts │ │ ├── app__schemas__user__GetOrders.ts │ │ ├── app__schemas__user__GetProducts.ts │ │ └── app__schemas__wishlist__GetProduct.ts │ ├── services │ │ ├── AuthenticationService.ts │ │ ├── BannerService.ts │ │ ├── CartService.ts │ │ ├── CategoryService.ts │ │ ├── DashboardService.ts │ │ ├── HomeService.ts │ │ ├── OrderService.ts │ │ ├── ProductService.ts │ │ ├── SearchService.ts │ │ ├── UserService.ts │ │ └── WishlistService.ts │ └── token.ts ├── assets │ ├── fonts │ │ └── Allerta-Stencil-Regular.woff │ └── icons │ │ ├── BagIcon.tsx │ │ ├── DownArrow.tsx │ │ ├── FacebookLogo.tsx │ │ ├── Heart.tsx │ │ ├── HeartSolid.tsx │ │ ├── InstagramLogo.tsx │ │ ├── LeftArrow.tsx │ │ ├── Loading.module.css │ │ ├── Loading.tsx │ │ ├── MenuIcon.tsx │ │ ├── NextArrow.tsx │ │ ├── PrevArrow.tsx │ │ ├── RightArrow.tsx │ │ ├── SearchIcon.tsx │ │ ├── UserIcon.tsx │ │ ├── WhistlistIcon.tsx │ │ ├── facebook.svg │ │ ├── heart.svg │ │ └── instagram.svg ├── components │ ├── Banner.tsx │ ├── Card.tsx │ ├── Dropdown.tsx │ ├── Footer.tsx │ ├── Header.tsx │ ├── OverlayContainer.tsx │ ├── Pagination.tsx │ ├── PopoverMenu.tsx │ ├── Search.tsx │ ├── Sort.tsx │ ├── admin │ │ ├── Banner.tsx │ │ ├── Banners.tsx │ │ ├── Categories.tsx │ │ ├── Category.tsx │ │ ├── CreateBanner.tsx │ │ ├── CreateCategory.tsx │ │ ├── CreateProduct.tsx │ │ ├── Customer.tsx │ │ ├── Customers.tsx │ │ ├── Dashboard.tsx │ │ ├── Dropzone.tsx │ │ ├── Order.tsx │ │ ├── Orders.tsx │ │ ├── Product.tsx │ │ └── Products.tsx │ ├── auth │ │ ├── AuthForm.tsx │ │ ├── ForgotPassword.tsx │ │ ├── Login.tsx │ │ ├── Register.tsx │ │ └── ResetPassword.tsx │ ├── button │ │ ├── Button.tsx │ │ ├── GhostButton.tsx │ │ ├── LinkButton.tsx │ │ └── TextButton.tsx │ ├── cart │ │ ├── CartItem.tsx │ │ └── Item.tsx │ ├── input │ │ ├── Dropdown.tsx │ │ ├── Input.tsx │ │ └── LegendInput.tsx │ ├── profile │ │ ├── ChangeAddress.tsx │ │ ├── ChangePassword.tsx │ │ ├── Modal.tsx │ │ ├── Order.tsx │ │ ├── OrderProducts.tsx │ │ ├── PersonalData.tsx │ │ └── TopUp.tsx │ └── util │ │ └── utilFunc.ts ├── context │ ├── AuthContext.tsx │ ├── CartContext.tsx │ ├── SearchContext.tsx │ └── WishlistContext.tsx ├── index.css ├── index.tsx ├── logo.svg ├── pages │ ├── 404.tsx │ ├── Admin.tsx │ ├── Checkout.tsx │ ├── ComingSoon.tsx │ ├── Home.tsx │ ├── Product.tsx │ ├── Products.tsx │ ├── Profile.tsx │ ├── TestModel.tsx │ └── Wishlist.tsx ├── reportWebVitals.ts ├── service-worker.ts ├── serviceWorkerRegistration.ts ├── setupTests.ts └── util │ ├── AdminRoutes.tsx │ └── UserRoutes.tsx ├── tailwind.config.js ├── tsconfig.json ├── vercel.json └── vite.config.ts /.deepsource.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/.deepsource.toml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | frontend/node_modules/ 2 | -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/.env.example -------------------------------------------------------------------------------- /.github/workflows/backend-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/.github/workflows/backend-test.yaml -------------------------------------------------------------------------------- /.github/workflows/deploy-client.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/.github/workflows/deploy-client.yaml -------------------------------------------------------------------------------- /.github/workflows/gcp-deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/.github/workflows/gcp-deploy.yaml -------------------------------------------------------------------------------- /.github/workflows/pre-commit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/.github/workflows/pre-commit.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/.gitignore -------------------------------------------------------------------------------- /.isort.cfg: -------------------------------------------------------------------------------- 1 | [settings] 2 | profile=black 3 | src_paths=backend 4 | -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.formatting.provider": "black" 3 | } 4 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/README.md -------------------------------------------------------------------------------- /backend/.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/.coveragerc -------------------------------------------------------------------------------- /backend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/Dockerfile -------------------------------------------------------------------------------- /backend/alembic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/alembic.ini -------------------------------------------------------------------------------- /backend/alembic/README: -------------------------------------------------------------------------------- 1 | Generic single-database configuration. 2 | -------------------------------------------------------------------------------- /backend/alembic/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/alembic/env.py -------------------------------------------------------------------------------- /backend/alembic/script.py.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/alembic/script.py.mako -------------------------------------------------------------------------------- /backend/alembic/versions/44d8bafa7c91_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/alembic/versions/44d8bafa7c91_models.py -------------------------------------------------------------------------------- /backend/alembic/versions/9b7f9e3d9069_soft_delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/alembic/versions/9b7f9e3d9069_soft_delete.py -------------------------------------------------------------------------------- /backend/app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/app/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/app/api/__init__.py -------------------------------------------------------------------------------- /backend/app/api/admins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/app/api/admins.py -------------------------------------------------------------------------------- /backend/app/api/authentications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/app/api/authentications.py -------------------------------------------------------------------------------- /backend/app/api/banners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/app/api/banners.py -------------------------------------------------------------------------------- /backend/app/api/carts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/app/api/carts.py -------------------------------------------------------------------------------- /backend/app/api/categories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/app/api/categories.py -------------------------------------------------------------------------------- /backend/app/api/homes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/app/api/homes.py -------------------------------------------------------------------------------- /backend/app/api/orders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/app/api/orders.py -------------------------------------------------------------------------------- /backend/app/api/products.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/app/api/products.py -------------------------------------------------------------------------------- /backend/app/api/searches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/app/api/searches.py -------------------------------------------------------------------------------- /backend/app/api/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/app/api/users.py -------------------------------------------------------------------------------- /backend/app/api/wishlists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/app/api/wishlists.py -------------------------------------------------------------------------------- /backend/app/core/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/app/core/config.py -------------------------------------------------------------------------------- /backend/app/core/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/app/core/logger.py -------------------------------------------------------------------------------- /backend/app/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/app/db.py -------------------------------------------------------------------------------- /backend/app/deps/authentication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/app/deps/authentication.py -------------------------------------------------------------------------------- /backend/app/deps/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/app/deps/db.py -------------------------------------------------------------------------------- /backend/app/deps/google_cloud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/app/deps/google_cloud.py -------------------------------------------------------------------------------- /backend/app/deps/image_base64.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/app/deps/image_base64.py -------------------------------------------------------------------------------- /backend/app/deps/send_email.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/app/deps/send_email.py -------------------------------------------------------------------------------- /backend/app/deps/sql_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/app/deps/sql_error.py -------------------------------------------------------------------------------- /backend/app/deps/templates/checkout_order.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/app/deps/templates/checkout_order.html -------------------------------------------------------------------------------- /backend/app/deps/templates/forgot_password.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/app/deps/templates/forgot_password.html -------------------------------------------------------------------------------- /backend/app/factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/app/factory.py -------------------------------------------------------------------------------- /backend/app/image_classification/development/Per_Class_Augmentation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/app/image_classification/development/Per_Class_Augmentation.ipynb -------------------------------------------------------------------------------- /backend/app/image_classification/development/SOP-AI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/app/image_classification/development/SOP-AI.md -------------------------------------------------------------------------------- /backend/app/image_classification/development/convert_mnist_jpg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/app/image_classification/development/convert_mnist_jpg.py -------------------------------------------------------------------------------- /backend/app/image_classification/development/explore_dataset.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/app/image_classification/development/explore_dataset.ipynb -------------------------------------------------------------------------------- /backend/app/image_classification/development/main.py: -------------------------------------------------------------------------------- 1 | print("Hello Ai") 2 | -------------------------------------------------------------------------------- /backend/app/image_classification/pipeline/Model_Testing.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/app/image_classification/pipeline/Model_Testing.ipynb -------------------------------------------------------------------------------- /backend/app/image_classification/pipeline/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/app/image_classification/pipeline/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/app/image_classification/pipeline/main.py -------------------------------------------------------------------------------- /backend/app/image_classification/pipeline/model.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/app/image_classification/pipeline/model.pth -------------------------------------------------------------------------------- /backend/app/image_classification/pipeline/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/app/image_classification/pipeline/model.py -------------------------------------------------------------------------------- /backend/app/image_classification/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/app/image_classification/requirements.txt -------------------------------------------------------------------------------- /backend/app/image_classification/utils/load_mnist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/app/image_classification/utils/load_mnist.py -------------------------------------------------------------------------------- /backend/app/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/app/models/__init__.py -------------------------------------------------------------------------------- /backend/app/models/banner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/app/models/banner.py -------------------------------------------------------------------------------- /backend/app/models/cart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/app/models/cart.py -------------------------------------------------------------------------------- /backend/app/models/category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/app/models/category.py -------------------------------------------------------------------------------- /backend/app/models/default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/app/models/default.py -------------------------------------------------------------------------------- /backend/app/models/forgot_password.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/app/models/forgot_password.py -------------------------------------------------------------------------------- /backend/app/models/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/app/models/image.py -------------------------------------------------------------------------------- /backend/app/models/order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/app/models/order.py -------------------------------------------------------------------------------- /backend/app/models/order_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/app/models/order_item.py -------------------------------------------------------------------------------- /backend/app/models/product.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/app/models/product.py -------------------------------------------------------------------------------- /backend/app/models/product_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/app/models/product_image.py -------------------------------------------------------------------------------- /backend/app/models/product_size_quantity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/app/models/product_size_quantity.py -------------------------------------------------------------------------------- /backend/app/models/size.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/app/models/size.py -------------------------------------------------------------------------------- /backend/app/models/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/app/models/user.py -------------------------------------------------------------------------------- /backend/app/models/wishlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/app/models/wishlist.py -------------------------------------------------------------------------------- /backend/app/schemas/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/app/schemas/admin.py -------------------------------------------------------------------------------- /backend/app/schemas/authentication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/app/schemas/authentication.py -------------------------------------------------------------------------------- /backend/app/schemas/banner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/app/schemas/banner.py -------------------------------------------------------------------------------- /backend/app/schemas/cart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/app/schemas/cart.py -------------------------------------------------------------------------------- /backend/app/schemas/category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/app/schemas/category.py -------------------------------------------------------------------------------- /backend/app/schemas/default_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/app/schemas/default_model.py -------------------------------------------------------------------------------- /backend/app/schemas/home.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/app/schemas/home.py -------------------------------------------------------------------------------- /backend/app/schemas/order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/app/schemas/order.py -------------------------------------------------------------------------------- /backend/app/schemas/product.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/app/schemas/product.py -------------------------------------------------------------------------------- /backend/app/schemas/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/app/schemas/search.py -------------------------------------------------------------------------------- /backend/app/schemas/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/app/schemas/user.py -------------------------------------------------------------------------------- /backend/app/schemas/wishlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/app/schemas/wishlist.py -------------------------------------------------------------------------------- /backend/app/seeders/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/app/seeders/banner_seeder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/app/seeders/banner_seeder.py -------------------------------------------------------------------------------- /backend/app/seeders/cart_seeder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/app/seeders/cart_seeder.py -------------------------------------------------------------------------------- /backend/app/seeders/category_seeder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/app/seeders/category_seeder.py -------------------------------------------------------------------------------- /backend/app/seeders/image_seeder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/app/seeders/image_seeder.py -------------------------------------------------------------------------------- /backend/app/seeders/order_item_seeder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/app/seeders/order_item_seeder.py -------------------------------------------------------------------------------- /backend/app/seeders/order_seeder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/app/seeders/order_seeder.py -------------------------------------------------------------------------------- /backend/app/seeders/product_image_seeder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/app/seeders/product_image_seeder.py -------------------------------------------------------------------------------- /backend/app/seeders/product_seeder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/app/seeders/product_seeder.py -------------------------------------------------------------------------------- /backend/app/seeders/product_size_quantity_seeder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/app/seeders/product_size_quantity_seeder.py -------------------------------------------------------------------------------- /backend/app/seeders/seeder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/app/seeders/seeder.py -------------------------------------------------------------------------------- /backend/app/seeders/size_seeder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/app/seeders/size_seeder.py -------------------------------------------------------------------------------- /backend/app/seeders/user_seeder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/app/seeders/user_seeder.py -------------------------------------------------------------------------------- /backend/app/seeders/wishlist_seeder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/app/seeders/wishlist_seeder.py -------------------------------------------------------------------------------- /backend/app/util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/app/util/dearchive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/app/util/dearchive.py -------------------------------------------------------------------------------- /backend/app/util/drop-tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/app/util/drop-tables.py -------------------------------------------------------------------------------- /backend/backend/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/backend/env.py -------------------------------------------------------------------------------- /backend/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/main.py -------------------------------------------------------------------------------- /backend/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/poetry.lock -------------------------------------------------------------------------------- /backend/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/pyproject.toml -------------------------------------------------------------------------------- /backend/shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/shell.py -------------------------------------------------------------------------------- /backend/sql/extension/extension.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/sql/extension/extension.sql -------------------------------------------------------------------------------- /backend/sql/rule_soft_delete.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/sql/rule_soft_delete.sql -------------------------------------------------------------------------------- /backend/sql/soft_delete.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/sql/soft_delete.sql -------------------------------------------------------------------------------- /backend/sql/update_at.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/sql/update_at.sql -------------------------------------------------------------------------------- /backend/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/static/favicon.ico -------------------------------------------------------------------------------- /backend/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/static/index.html -------------------------------------------------------------------------------- /backend/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/static/style.css -------------------------------------------------------------------------------- /backend/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/tests/apis/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/tests/apis/test_admins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/tests/apis/test_admins.py -------------------------------------------------------------------------------- /backend/tests/apis/test_authentications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/tests/apis/test_authentications.py -------------------------------------------------------------------------------- /backend/tests/apis/test_banners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/tests/apis/test_banners.py -------------------------------------------------------------------------------- /backend/tests/apis/test_carts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/tests/apis/test_carts.py -------------------------------------------------------------------------------- /backend/tests/apis/test_categories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/tests/apis/test_categories.py -------------------------------------------------------------------------------- /backend/tests/apis/test_homes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/tests/apis/test_homes.py -------------------------------------------------------------------------------- /backend/tests/apis/test_orders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/tests/apis/test_orders.py -------------------------------------------------------------------------------- /backend/tests/apis/test_products.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/tests/apis/test_products.py -------------------------------------------------------------------------------- /backend/tests/apis/test_searches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/tests/apis/test_searches.py -------------------------------------------------------------------------------- /backend/tests/apis/test_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/tests/apis/test_users.py -------------------------------------------------------------------------------- /backend/tests/apis/test_wishlists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/tests/apis/test_wishlists.py -------------------------------------------------------------------------------- /backend/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/tests/conftest.py -------------------------------------------------------------------------------- /backend/tests/fixtures/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/tests/fixtures/image.py -------------------------------------------------------------------------------- /backend/tests/fixtures/insert_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/tests/fixtures/insert_data.py -------------------------------------------------------------------------------- /backend/tests/fixtures/test_image.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/tests/fixtures/test_image.jpeg -------------------------------------------------------------------------------- /backend/tests/integrations/test_admin_category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/tests/integrations/test_admin_category.py -------------------------------------------------------------------------------- /backend/tests/integrations/test_user_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/tests/integrations/test_user_auth.py -------------------------------------------------------------------------------- /backend/tests/integrations/test_user_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/tests/integrations/test_user_order.py -------------------------------------------------------------------------------- /backend/tests/integrations/test_user_wishlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/tests/integrations/test_user_wishlist.py -------------------------------------------------------------------------------- /backend/tests/models/test_banner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/tests/models/test_banner.py -------------------------------------------------------------------------------- /backend/tests/models/test_cart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/tests/models/test_cart.py -------------------------------------------------------------------------------- /backend/tests/models/test_category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/tests/models/test_category.py -------------------------------------------------------------------------------- /backend/tests/models/test_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/tests/models/test_image.py -------------------------------------------------------------------------------- /backend/tests/models/test_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/tests/models/test_order.py -------------------------------------------------------------------------------- /backend/tests/models/test_order_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/tests/models/test_order_item.py -------------------------------------------------------------------------------- /backend/tests/models/test_product.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/tests/models/test_product.py -------------------------------------------------------------------------------- /backend/tests/models/test_product_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/tests/models/test_product_image.py -------------------------------------------------------------------------------- /backend/tests/models/test_product_size_quantity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/tests/models/test_product_size_quantity.py -------------------------------------------------------------------------------- /backend/tests/models/test_size.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/tests/models/test_size.py -------------------------------------------------------------------------------- /backend/tests/models/test_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/tests/models/test_user.py -------------------------------------------------------------------------------- /backend/tests/models/test_wishlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/tests/models/test_wishlist.py -------------------------------------------------------------------------------- /backend/tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/backend/tests/utils.py -------------------------------------------------------------------------------- /docker-compose.ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/docker-compose.ci.yml -------------------------------------------------------------------------------- /docker-compose.override.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/docker-compose.override.yml -------------------------------------------------------------------------------- /docker-compose.prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/docker-compose.prod.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /frontend/.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | build 3 | -------------------------------------------------------------------------------- /frontend/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/.eslintrc.js -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/.prettierrc -------------------------------------------------------------------------------- /frontend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/Dockerfile -------------------------------------------------------------------------------- /frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/index.html -------------------------------------------------------------------------------- /frontend/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/nginx.conf -------------------------------------------------------------------------------- /frontend/openapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/openapi.json -------------------------------------------------------------------------------- /frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/package-lock.json -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/pnpm-lock.yaml -------------------------------------------------------------------------------- /frontend/postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/postcss.config.cjs -------------------------------------------------------------------------------- /frontend/public/img/404.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/public/img/404.svg -------------------------------------------------------------------------------- /frontend/public/img/coding.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/public/img/coding.svg -------------------------------------------------------------------------------- /frontend/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/public/logo192.png -------------------------------------------------------------------------------- /frontend/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/public/logo512.png -------------------------------------------------------------------------------- /frontend/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/public/manifest.json -------------------------------------------------------------------------------- /frontend/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/public/robots.txt -------------------------------------------------------------------------------- /frontend/public/tutu.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/public/tutu.ico -------------------------------------------------------------------------------- /frontend/public/tutu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/public/tutu.png -------------------------------------------------------------------------------- /frontend/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/App.tsx -------------------------------------------------------------------------------- /frontend/src/api/core/ApiError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/api/core/ApiError.ts -------------------------------------------------------------------------------- /frontend/src/api/core/ApiRequestOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/api/core/ApiRequestOptions.ts -------------------------------------------------------------------------------- /frontend/src/api/core/ApiResult.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/api/core/ApiResult.ts -------------------------------------------------------------------------------- /frontend/src/api/core/CancelablePromise.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/api/core/CancelablePromise.ts -------------------------------------------------------------------------------- /frontend/src/api/core/OpenAPI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/api/core/OpenAPI.ts -------------------------------------------------------------------------------- /frontend/src/api/core/request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/api/core/request.ts -------------------------------------------------------------------------------- /frontend/src/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/api/index.ts -------------------------------------------------------------------------------- /frontend/src/api/models/Banner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/api/models/Banner.ts -------------------------------------------------------------------------------- /frontend/src/api/models/BestSeller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/api/models/BestSeller.ts -------------------------------------------------------------------------------- /frontend/src/api/models/Body_sign_in_v1_sign_in_post.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/api/models/Body_sign_in_v1_sign_in_post.ts -------------------------------------------------------------------------------- /frontend/src/api/models/Category.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/api/models/Category.ts -------------------------------------------------------------------------------- /frontend/src/api/models/CategoryOrder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/api/models/CategoryOrder.ts -------------------------------------------------------------------------------- /frontend/src/api/models/ChangePassword.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/api/models/ChangePassword.ts -------------------------------------------------------------------------------- /frontend/src/api/models/CreateBanner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/api/models/CreateBanner.ts -------------------------------------------------------------------------------- /frontend/src/api/models/CreateCart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/api/models/CreateCart.ts -------------------------------------------------------------------------------- /frontend/src/api/models/CreateCategory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/api/models/CreateCategory.ts -------------------------------------------------------------------------------- /frontend/src/api/models/CreateOrder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/api/models/CreateOrder.ts -------------------------------------------------------------------------------- /frontend/src/api/models/CreateProduct.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/api/models/CreateProduct.ts -------------------------------------------------------------------------------- /frontend/src/api/models/Customer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/api/models/Customer.ts -------------------------------------------------------------------------------- /frontend/src/api/models/DefaultResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/api/models/DefaultResponse.ts -------------------------------------------------------------------------------- /frontend/src/api/models/DetailCategory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/api/models/DetailCategory.ts -------------------------------------------------------------------------------- /frontend/src/api/models/GetAdminOrder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/api/models/GetAdminOrder.ts -------------------------------------------------------------------------------- /frontend/src/api/models/GetAdminOrders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/api/models/GetAdminOrders.ts -------------------------------------------------------------------------------- /frontend/src/api/models/GetBanners.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/api/models/GetBanners.ts -------------------------------------------------------------------------------- /frontend/src/api/models/GetBestSeller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/api/models/GetBestSeller.ts -------------------------------------------------------------------------------- /frontend/src/api/models/GetCart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/api/models/GetCart.ts -------------------------------------------------------------------------------- /frontend/src/api/models/GetCategories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/api/models/GetCategories.ts -------------------------------------------------------------------------------- /frontend/src/api/models/GetCategory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/api/models/GetCategory.ts -------------------------------------------------------------------------------- /frontend/src/api/models/GetCustomers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/api/models/GetCustomers.ts -------------------------------------------------------------------------------- /frontend/src/api/models/GetDashboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/api/models/GetDashboard.ts -------------------------------------------------------------------------------- /frontend/src/api/models/GetDetailOrder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/api/models/GetDetailOrder.ts -------------------------------------------------------------------------------- /frontend/src/api/models/GetImage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/api/models/GetImage.ts -------------------------------------------------------------------------------- /frontend/src/api/models/GetOrder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/api/models/GetOrder.ts -------------------------------------------------------------------------------- /frontend/src/api/models/GetProductDetail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/api/models/GetProductDetail.ts -------------------------------------------------------------------------------- /frontend/src/api/models/GetProductDetails.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/api/models/GetProductDetails.ts -------------------------------------------------------------------------------- /frontend/src/api/models/GetSales.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/api/models/GetSales.ts -------------------------------------------------------------------------------- /frontend/src/api/models/GetShippingPrice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/api/models/GetShippingPrice.ts -------------------------------------------------------------------------------- /frontend/src/api/models/GetShippingPrices.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/api/models/GetShippingPrices.ts -------------------------------------------------------------------------------- /frontend/src/api/models/GetUser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/api/models/GetUser.ts -------------------------------------------------------------------------------- /frontend/src/api/models/GetUserAddress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/api/models/GetUserAddress.ts -------------------------------------------------------------------------------- /frontend/src/api/models/GetUserBalance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/api/models/GetUserBalance.ts -------------------------------------------------------------------------------- /frontend/src/api/models/GetUserProductDetails.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/api/models/GetUserProductDetails.ts -------------------------------------------------------------------------------- /frontend/src/api/models/GetUserProducts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/api/models/GetUserProducts.ts -------------------------------------------------------------------------------- /frontend/src/api/models/GetWishlist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/api/models/GetWishlist.ts -------------------------------------------------------------------------------- /frontend/src/api/models/HTTPValidationError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/api/models/HTTPValidationError.ts -------------------------------------------------------------------------------- /frontend/src/api/models/IncomeMonth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/api/models/IncomeMonth.ts -------------------------------------------------------------------------------- /frontend/src/api/models/Order.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/api/models/Order.ts -------------------------------------------------------------------------------- /frontend/src/api/models/OrderAddress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/api/models/OrderAddress.ts -------------------------------------------------------------------------------- /frontend/src/api/models/Pagination.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/api/models/Pagination.ts -------------------------------------------------------------------------------- /frontend/src/api/models/Product.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/api/models/Product.ts -------------------------------------------------------------------------------- /frontend/src/api/models/PutUserAddress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/api/models/PutUserAddress.ts -------------------------------------------------------------------------------- /frontend/src/api/models/PutUserBalance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/api/models/PutUserBalance.ts -------------------------------------------------------------------------------- /frontend/src/api/models/ResetPassword.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/api/models/ResetPassword.ts -------------------------------------------------------------------------------- /frontend/src/api/models/Sales.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/api/models/Sales.ts -------------------------------------------------------------------------------- /frontend/src/api/models/SearchImage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/api/models/SearchImage.ts -------------------------------------------------------------------------------- /frontend/src/api/models/SearchImageResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/api/models/SearchImageResponse.ts -------------------------------------------------------------------------------- /frontend/src/api/models/SearchText.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/api/models/SearchText.ts -------------------------------------------------------------------------------- /frontend/src/api/models/ShowerThoughts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/api/models/ShowerThoughts.ts -------------------------------------------------------------------------------- /frontend/src/api/models/Stock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/api/models/Stock.ts -------------------------------------------------------------------------------- /frontend/src/api/models/UpdateBanner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/api/models/UpdateBanner.ts -------------------------------------------------------------------------------- /frontend/src/api/models/UpdateCart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/api/models/UpdateCart.ts -------------------------------------------------------------------------------- /frontend/src/api/models/UpdateCategory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/api/models/UpdateCategory.ts -------------------------------------------------------------------------------- /frontend/src/api/models/UpdateProduct.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/api/models/UpdateProduct.ts -------------------------------------------------------------------------------- /frontend/src/api/models/UpdateStock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/api/models/UpdateStock.ts -------------------------------------------------------------------------------- /frontend/src/api/models/UserCreate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/api/models/UserCreate.ts -------------------------------------------------------------------------------- /frontend/src/api/models/UserRead.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/api/models/UserRead.ts -------------------------------------------------------------------------------- /frontend/src/api/models/ValidationError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/api/models/ValidationError.ts -------------------------------------------------------------------------------- /frontend/src/api/models/app__schemas__admin__GetOrders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/api/models/app__schemas__admin__GetOrders.ts -------------------------------------------------------------------------------- /frontend/src/api/models/app__schemas__cart__GetProduct.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/api/models/app__schemas__cart__GetProduct.ts -------------------------------------------------------------------------------- /frontend/src/api/models/app__schemas__product__GetProduct.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/api/models/app__schemas__product__GetProduct.ts -------------------------------------------------------------------------------- /frontend/src/api/models/app__schemas__product__GetProducts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/api/models/app__schemas__product__GetProducts.ts -------------------------------------------------------------------------------- /frontend/src/api/models/app__schemas__user__GetOrders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/api/models/app__schemas__user__GetOrders.ts -------------------------------------------------------------------------------- /frontend/src/api/models/app__schemas__user__GetProducts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/api/models/app__schemas__user__GetProducts.ts -------------------------------------------------------------------------------- /frontend/src/api/models/app__schemas__wishlist__GetProduct.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/api/models/app__schemas__wishlist__GetProduct.ts -------------------------------------------------------------------------------- /frontend/src/api/services/AuthenticationService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/api/services/AuthenticationService.ts -------------------------------------------------------------------------------- /frontend/src/api/services/BannerService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/api/services/BannerService.ts -------------------------------------------------------------------------------- /frontend/src/api/services/CartService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/api/services/CartService.ts -------------------------------------------------------------------------------- /frontend/src/api/services/CategoryService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/api/services/CategoryService.ts -------------------------------------------------------------------------------- /frontend/src/api/services/DashboardService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/api/services/DashboardService.ts -------------------------------------------------------------------------------- /frontend/src/api/services/HomeService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/api/services/HomeService.ts -------------------------------------------------------------------------------- /frontend/src/api/services/OrderService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/api/services/OrderService.ts -------------------------------------------------------------------------------- /frontend/src/api/services/ProductService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/api/services/ProductService.ts -------------------------------------------------------------------------------- /frontend/src/api/services/SearchService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/api/services/SearchService.ts -------------------------------------------------------------------------------- /frontend/src/api/services/UserService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/api/services/UserService.ts -------------------------------------------------------------------------------- /frontend/src/api/services/WishlistService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/api/services/WishlistService.ts -------------------------------------------------------------------------------- /frontend/src/api/token.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/api/token.ts -------------------------------------------------------------------------------- /frontend/src/assets/fonts/Allerta-Stencil-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/assets/fonts/Allerta-Stencil-Regular.woff -------------------------------------------------------------------------------- /frontend/src/assets/icons/BagIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/assets/icons/BagIcon.tsx -------------------------------------------------------------------------------- /frontend/src/assets/icons/DownArrow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/assets/icons/DownArrow.tsx -------------------------------------------------------------------------------- /frontend/src/assets/icons/FacebookLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/assets/icons/FacebookLogo.tsx -------------------------------------------------------------------------------- /frontend/src/assets/icons/Heart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/assets/icons/Heart.tsx -------------------------------------------------------------------------------- /frontend/src/assets/icons/HeartSolid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/assets/icons/HeartSolid.tsx -------------------------------------------------------------------------------- /frontend/src/assets/icons/InstagramLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/assets/icons/InstagramLogo.tsx -------------------------------------------------------------------------------- /frontend/src/assets/icons/LeftArrow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/assets/icons/LeftArrow.tsx -------------------------------------------------------------------------------- /frontend/src/assets/icons/Loading.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/assets/icons/Loading.module.css -------------------------------------------------------------------------------- /frontend/src/assets/icons/Loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/assets/icons/Loading.tsx -------------------------------------------------------------------------------- /frontend/src/assets/icons/MenuIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/assets/icons/MenuIcon.tsx -------------------------------------------------------------------------------- /frontend/src/assets/icons/NextArrow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/assets/icons/NextArrow.tsx -------------------------------------------------------------------------------- /frontend/src/assets/icons/PrevArrow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/assets/icons/PrevArrow.tsx -------------------------------------------------------------------------------- /frontend/src/assets/icons/RightArrow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/assets/icons/RightArrow.tsx -------------------------------------------------------------------------------- /frontend/src/assets/icons/SearchIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/assets/icons/SearchIcon.tsx -------------------------------------------------------------------------------- /frontend/src/assets/icons/UserIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/assets/icons/UserIcon.tsx -------------------------------------------------------------------------------- /frontend/src/assets/icons/WhistlistIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/assets/icons/WhistlistIcon.tsx -------------------------------------------------------------------------------- /frontend/src/assets/icons/facebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/assets/icons/facebook.svg -------------------------------------------------------------------------------- /frontend/src/assets/icons/heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/assets/icons/heart.svg -------------------------------------------------------------------------------- /frontend/src/assets/icons/instagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/assets/icons/instagram.svg -------------------------------------------------------------------------------- /frontend/src/components/Banner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/components/Banner.tsx -------------------------------------------------------------------------------- /frontend/src/components/Card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/components/Card.tsx -------------------------------------------------------------------------------- /frontend/src/components/Dropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/components/Dropdown.tsx -------------------------------------------------------------------------------- /frontend/src/components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/components/Footer.tsx -------------------------------------------------------------------------------- /frontend/src/components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/components/Header.tsx -------------------------------------------------------------------------------- /frontend/src/components/OverlayContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/components/OverlayContainer.tsx -------------------------------------------------------------------------------- /frontend/src/components/Pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/components/Pagination.tsx -------------------------------------------------------------------------------- /frontend/src/components/PopoverMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/components/PopoverMenu.tsx -------------------------------------------------------------------------------- /frontend/src/components/Search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/components/Search.tsx -------------------------------------------------------------------------------- /frontend/src/components/Sort.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/components/Sort.tsx -------------------------------------------------------------------------------- /frontend/src/components/admin/Banner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/components/admin/Banner.tsx -------------------------------------------------------------------------------- /frontend/src/components/admin/Banners.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/components/admin/Banners.tsx -------------------------------------------------------------------------------- /frontend/src/components/admin/Categories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/components/admin/Categories.tsx -------------------------------------------------------------------------------- /frontend/src/components/admin/Category.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/components/admin/Category.tsx -------------------------------------------------------------------------------- /frontend/src/components/admin/CreateBanner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/components/admin/CreateBanner.tsx -------------------------------------------------------------------------------- /frontend/src/components/admin/CreateCategory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/components/admin/CreateCategory.tsx -------------------------------------------------------------------------------- /frontend/src/components/admin/CreateProduct.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/components/admin/CreateProduct.tsx -------------------------------------------------------------------------------- /frontend/src/components/admin/Customer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/components/admin/Customer.tsx -------------------------------------------------------------------------------- /frontend/src/components/admin/Customers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/components/admin/Customers.tsx -------------------------------------------------------------------------------- /frontend/src/components/admin/Dashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/components/admin/Dashboard.tsx -------------------------------------------------------------------------------- /frontend/src/components/admin/Dropzone.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/components/admin/Dropzone.tsx -------------------------------------------------------------------------------- /frontend/src/components/admin/Order.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/components/admin/Order.tsx -------------------------------------------------------------------------------- /frontend/src/components/admin/Orders.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/components/admin/Orders.tsx -------------------------------------------------------------------------------- /frontend/src/components/admin/Product.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/components/admin/Product.tsx -------------------------------------------------------------------------------- /frontend/src/components/admin/Products.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/components/admin/Products.tsx -------------------------------------------------------------------------------- /frontend/src/components/auth/AuthForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/components/auth/AuthForm.tsx -------------------------------------------------------------------------------- /frontend/src/components/auth/ForgotPassword.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/components/auth/ForgotPassword.tsx -------------------------------------------------------------------------------- /frontend/src/components/auth/Login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/components/auth/Login.tsx -------------------------------------------------------------------------------- /frontend/src/components/auth/Register.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/components/auth/Register.tsx -------------------------------------------------------------------------------- /frontend/src/components/auth/ResetPassword.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/components/auth/ResetPassword.tsx -------------------------------------------------------------------------------- /frontend/src/components/button/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/components/button/Button.tsx -------------------------------------------------------------------------------- /frontend/src/components/button/GhostButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/components/button/GhostButton.tsx -------------------------------------------------------------------------------- /frontend/src/components/button/LinkButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/components/button/LinkButton.tsx -------------------------------------------------------------------------------- /frontend/src/components/button/TextButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/components/button/TextButton.tsx -------------------------------------------------------------------------------- /frontend/src/components/cart/CartItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/components/cart/CartItem.tsx -------------------------------------------------------------------------------- /frontend/src/components/cart/Item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/components/cart/Item.tsx -------------------------------------------------------------------------------- /frontend/src/components/input/Dropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/components/input/Dropdown.tsx -------------------------------------------------------------------------------- /frontend/src/components/input/Input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/components/input/Input.tsx -------------------------------------------------------------------------------- /frontend/src/components/input/LegendInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/components/input/LegendInput.tsx -------------------------------------------------------------------------------- /frontend/src/components/profile/ChangeAddress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/components/profile/ChangeAddress.tsx -------------------------------------------------------------------------------- /frontend/src/components/profile/ChangePassword.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/components/profile/ChangePassword.tsx -------------------------------------------------------------------------------- /frontend/src/components/profile/Modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/components/profile/Modal.tsx -------------------------------------------------------------------------------- /frontend/src/components/profile/Order.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/components/profile/Order.tsx -------------------------------------------------------------------------------- /frontend/src/components/profile/OrderProducts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/components/profile/OrderProducts.tsx -------------------------------------------------------------------------------- /frontend/src/components/profile/PersonalData.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/components/profile/PersonalData.tsx -------------------------------------------------------------------------------- /frontend/src/components/profile/TopUp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/components/profile/TopUp.tsx -------------------------------------------------------------------------------- /frontend/src/components/util/utilFunc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/components/util/utilFunc.ts -------------------------------------------------------------------------------- /frontend/src/context/AuthContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/context/AuthContext.tsx -------------------------------------------------------------------------------- /frontend/src/context/CartContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/context/CartContext.tsx -------------------------------------------------------------------------------- /frontend/src/context/SearchContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/context/SearchContext.tsx -------------------------------------------------------------------------------- /frontend/src/context/WishlistContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/context/WishlistContext.tsx -------------------------------------------------------------------------------- /frontend/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/index.css -------------------------------------------------------------------------------- /frontend/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/index.tsx -------------------------------------------------------------------------------- /frontend/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/logo.svg -------------------------------------------------------------------------------- /frontend/src/pages/404.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/pages/404.tsx -------------------------------------------------------------------------------- /frontend/src/pages/Admin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/pages/Admin.tsx -------------------------------------------------------------------------------- /frontend/src/pages/Checkout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/pages/Checkout.tsx -------------------------------------------------------------------------------- /frontend/src/pages/ComingSoon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/pages/ComingSoon.tsx -------------------------------------------------------------------------------- /frontend/src/pages/Home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/pages/Home.tsx -------------------------------------------------------------------------------- /frontend/src/pages/Product.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/pages/Product.tsx -------------------------------------------------------------------------------- /frontend/src/pages/Products.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/pages/Products.tsx -------------------------------------------------------------------------------- /frontend/src/pages/Profile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/pages/Profile.tsx -------------------------------------------------------------------------------- /frontend/src/pages/TestModel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/pages/TestModel.tsx -------------------------------------------------------------------------------- /frontend/src/pages/Wishlist.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/pages/Wishlist.tsx -------------------------------------------------------------------------------- /frontend/src/reportWebVitals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/reportWebVitals.ts -------------------------------------------------------------------------------- /frontend/src/service-worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/service-worker.ts -------------------------------------------------------------------------------- /frontend/src/serviceWorkerRegistration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/serviceWorkerRegistration.ts -------------------------------------------------------------------------------- /frontend/src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/setupTests.ts -------------------------------------------------------------------------------- /frontend/src/util/AdminRoutes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/util/AdminRoutes.tsx -------------------------------------------------------------------------------- /frontend/src/util/UserRoutes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/src/util/UserRoutes.tsx -------------------------------------------------------------------------------- /frontend/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/tailwind.config.js -------------------------------------------------------------------------------- /frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/tsconfig.json -------------------------------------------------------------------------------- /frontend/vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/vercel.json -------------------------------------------------------------------------------- /frontend/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drithh/e-commerce-website/HEAD/frontend/vite.config.ts --------------------------------------------------------------------------------