├── README.md ├── commerce-admin ├── .docker │ ├── app-entrypoint.sh │ ├── prod-app-entrypoint.sh │ └── worker-entrypoint.sh ├── .dockerignore ├── .env.example ├── .gitignore ├── Dockerfile ├── Dockerfile.app.prod ├── Dockerfile.celery.prod ├── README.md ├── app │ ├── __init__.py │ ├── admin.py │ ├── admin_tenant.py │ ├── api.py │ ├── apps.py │ ├── fixtures │ │ └── fake_data.json │ ├── forms.py │ ├── management │ │ ├── __init__.py │ │ └── commands │ │ │ ├── __init__.py │ │ │ └── admin-site.py │ ├── middlewares.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20200702_1404.py │ │ ├── 0003_checkout_remote_id.py │ │ └── __init__.py │ ├── models.py │ ├── receivers.py │ ├── serializers.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── auth_app │ ├── __init__.py │ ├── admin.py │ ├── admin_tenant.py │ ├── apps.py │ ├── fixtures │ │ ├── fake_data.json │ │ └── initial_data.json │ ├── management │ │ ├── __init__.py │ │ └── commands │ │ │ ├── __init__.py │ │ │ └── sync_tenant_permissions.py │ ├── managers.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── permissions.py │ ├── tests.py │ └── views.py ├── commerce_admin │ ├── __init__.py │ ├── asgi.py │ ├── celery.py │ ├── settings.py │ ├── urls.py │ ├── utils.py │ └── wsgi.py ├── common │ ├── __init__.py │ ├── models.py │ ├── sync_models.py │ └── validators.py ├── docker-compose.yml ├── fixtures │ ├── __init__.py │ ├── apps.py │ └── management │ │ ├── __init__.py │ │ └── commands │ │ ├── __init__.py │ │ └── db-reset.py ├── manage.py ├── my_admin │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── backends.py │ ├── fixtures │ │ └── initial_data.json │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20200629_1359.py │ │ └── __init__.py │ ├── models.py │ ├── receivers.py │ ├── serializers.py │ ├── tests.py │ └── views.py ├── requirements.txt └── tenant │ ├── __init__.py │ ├── admin.py │ ├── admin_tenant.py │ ├── apps.py │ ├── backends.py │ ├── fixtures │ └── fake_data.json │ ├── managers.py │ ├── middlewares.py │ ├── migrations │ ├── 0001_initial.py │ └── __init__.py │ ├── models.py │ ├── receivers.py │ ├── serializers.py │ ├── tests.py │ ├── utils.py │ └── views.py ├── commerce-shop ├── .docker │ └── entrypoint.sh ├── .env.example ├── .eslintrc.js ├── .gitignore ├── .prettierrc ├── Dockerfile ├── Dockerfile.prod ├── README.md ├── docker-compose.yaml ├── frontend │ ├── img │ │ ├── 404.png │ │ ├── Adidas-Y-3-KAIWA.png │ │ ├── BANNER.png │ │ ├── HTB1biCEb25TBuNjSspmq6yDRVXau.png │ │ ├── Imagem_3.png │ │ ├── Imagem_4.png │ │ ├── Nike-Air270-black.png │ │ ├── NikeAirZoomZeroPremium.png │ │ ├── Puma_Clyde_Court_Men.png │ │ ├── Puma_HOT_WHEELS_RS-X.png │ │ ├── ZEUSLAP.png │ │ ├── adidas-y-3-2.png │ │ ├── adidasFALCON.png │ │ ├── apple-watch.png │ │ ├── beats-headphones.png │ │ ├── bike2.png │ │ ├── card.png │ │ ├── favicon.ico │ │ ├── homepod.png │ │ ├── ipad-pro.png │ │ ├── iphone-x.png │ │ ├── jbl-speaker.png │ │ ├── jlab-audio-wireless.png │ │ ├── logo-nav.png │ │ ├── macbook-pro.png │ │ ├── menu.png │ │ ├── search.png │ │ ├── shopping-cart.png │ │ ├── slip.png │ │ ├── sort-down.png │ │ └── symbol_22_____3.png │ ├── js │ │ ├── checkout.js │ │ ├── component │ │ │ ├── Address.js │ │ │ ├── CustomerProfile.js │ │ │ ├── Payment.js │ │ │ ├── PaymentSuccess.js │ │ │ └── Step │ │ │ │ ├── StepContext.js │ │ │ │ ├── StepContextProvider.js │ │ │ │ └── index.js │ │ ├── http │ │ │ └── index.js │ │ ├── main.js │ │ └── util │ │ │ ├── url.js │ │ │ └── yup.js │ └── scss │ │ ├── _assets.scss │ │ ├── _cart.scss │ │ ├── _category.scss │ │ ├── _commons.scss │ │ ├── _footer.scss │ │ ├── _home.scss │ │ ├── _login.scss │ │ ├── _mixin.scss │ │ ├── _navbar-progress.scss │ │ ├── _navbar.scss │ │ ├── _payment-success.scss │ │ ├── _payment.scss │ │ ├── _placeholders.scss │ │ ├── _product.scss │ │ ├── _register.scss │ │ └── main.scss ├── mix-manifest.json ├── nest-cli.json ├── package-lock.json ├── package.json ├── public │ ├── css │ │ └── main.css │ ├── img │ │ ├── 404.png │ │ ├── Adidas-Y-3-KAIWA.png │ │ ├── BANNER.png │ │ ├── HTB1biCEb25TBuNjSspmq6yDRVXau.png │ │ ├── Imagem_3.png │ │ ├── Imagem_4.png │ │ ├── Nike-Air270-black.png │ │ ├── NikeAirZoomZeroPremium.png │ │ ├── Puma_Clyde_Court_Men.png │ │ ├── Puma_HOT_WHEELS_RS-X.png │ │ ├── ZEUSLAP.png │ │ ├── adidas-y-3-2.png │ │ ├── adidasFALCON.png │ │ ├── apple-watch.png │ │ ├── beats-headphones.png │ │ ├── bike2.png │ │ ├── card.png │ │ ├── favicon.ico │ │ ├── homepod.png │ │ ├── ipad-pro.png │ │ ├── iphone-x.png │ │ ├── jbl-speaker.png │ │ ├── jlab-audio-wireless.png │ │ ├── logo-nav.png │ │ ├── macbook-pro.png │ │ ├── menu.png │ │ ├── search.png │ │ ├── shopping-cart.png │ │ ├── slip.png │ │ ├── sort-down.png │ │ ├── symbol_22_____3.png │ │ └── symbol_total.png │ └── js │ │ ├── checkout.js │ │ └── main.js ├── src │ ├── app.module.ts │ ├── app.service.ts │ ├── commands │ │ ├── commands.module.ts │ │ └── fixtures │ │ │ ├── fixtures.service.spec.ts │ │ │ ├── fixtures.service.ts │ │ │ └── json │ │ │ ├── category.fixture.ts │ │ │ ├── index.ts │ │ │ ├── payment-method-config.ts │ │ │ ├── payment-method.ts │ │ │ ├── product.fixture.ts │ │ │ └── tenant.fixture.ts │ ├── console.ts │ ├── controllers │ │ ├── cart │ │ │ ├── cart.controller.spec.ts │ │ │ └── cart.controller.ts │ │ ├── category │ │ │ ├── category.controller.spec.ts │ │ │ └── category.controller.ts │ │ ├── checkout │ │ │ ├── checkout.controller.spec.ts │ │ │ └── checkout.controller.ts │ │ ├── home │ │ │ ├── home.controller.spec.ts │ │ │ └── home.controller.ts │ │ ├── index.ts │ │ ├── product │ │ │ ├── product.controller.spec.ts │ │ │ └── product.controller.ts │ │ └── search │ │ │ ├── search.controller.spec.ts │ │ │ └── search.controller.ts │ ├── decorators │ │ ├── cart.decorator.ts │ │ ├── categories-default.decorator.ts │ │ ├── main-dependencies.decorator.ts │ │ ├── order-product.decorator.ts │ │ ├── pagination.decorator.ts │ │ ├── payment-method-config-greater-installments.decorator.ts │ │ └── tenant.decorator.ts │ ├── elasticsearch │ │ ├── elasticsearch.module.ts │ │ └── es-data-source │ │ │ ├── es-data-source.service.spec.ts │ │ │ └── es-data-source.service.ts │ ├── interceptors │ │ ├── cart.interceptor.spec.ts │ │ ├── cart.interceptor.ts │ │ ├── categories-default.interceptor.spec.ts │ │ ├── categories-default.interceptor.ts │ │ ├── payment-method-config-greater-installments.interceptor.spec.ts │ │ ├── payment-method-config-greater-installments.interceptor.ts │ │ ├── tenant.interceptor.spec.ts │ │ └── tenant.interceptor.ts │ ├── main.ts │ ├── middlewares │ │ ├── tenant.middleware.spec.ts │ │ └── tenant.middleware.ts │ ├── models │ │ ├── base-tenant.model.ts │ │ ├── category.model.ts │ │ ├── payment-method-config.model.ts │ │ ├── payment-method.model.ts │ │ ├── product.model.ts │ │ └── tenant.model.ts │ ├── repositories │ │ ├── base.repository.ts │ │ ├── category │ │ │ ├── category.repository.spec.ts │ │ │ └── category.repository.ts │ │ ├── index.ts │ │ ├── payment-method-config │ │ │ ├── payment-method-config.repository.spec.ts │ │ │ └── payment-method-config.repository.ts │ │ ├── payment-method │ │ │ ├── payment-method.repository.spec.ts │ │ │ └── payment-method.repository.ts │ │ ├── product │ │ │ ├── product.repository.spec.ts │ │ │ └── product.repository.ts │ │ └── tenant │ │ │ ├── tenant.repository.spec.ts │ │ │ └── tenant.repository.ts │ ├── services │ │ ├── cart │ │ │ ├── cart.service.spec.ts │ │ │ └── cart.service.ts │ │ ├── index.ts │ │ ├── navbar │ │ │ ├── navbar.service.spec.ts │ │ │ └── navbar.service.ts │ │ └── tenant │ │ │ ├── tenant.service.spec.ts │ │ │ └── tenant.service.ts │ └── sync │ │ ├── base-model-sync.service.ts │ │ ├── category │ │ ├── category-sync.service.spec.ts │ │ └── category-sync.service.ts │ │ ├── index.ts │ │ ├── payment-method-config │ │ ├── payment-method-config-sync.service.spec.ts │ │ └── payment-method-config-sync.service.ts │ │ ├── payment-method │ │ ├── payment-method-sync.service.spec.ts │ │ └── payment-method-sync.service.ts │ │ ├── product │ │ ├── product-sync.service.spec.ts │ │ └── product-sync.service.ts │ │ └── tenant │ │ ├── tenant-sync.service.spec.ts │ │ └── tenant-sync.service.ts ├── test │ ├── app.e2e-spec.ts │ └── jest-e2e.json ├── tsconfig.build.json ├── tsconfig.json ├── views │ ├── cart │ │ └── show.hbs │ ├── category │ │ └── show.hbs │ ├── checkout.hbs │ ├── checkout │ │ └── payment-success.hbs │ ├── home.hbs │ ├── layouts │ │ └── layout.hbs │ ├── partials │ │ ├── footer.hbs │ │ └── navbar.hbs │ └── product │ │ └── show.hbs └── webpack.mix.js ├── k8s ├── admin │ ├── admin.yaml │ └── redis.yaml ├── assinaturas │ ├── assinaturas.yaml │ └── sql.sql ├── loja │ ├── loja.yaml │ └── values.yaml └── rabbitmq │ └── rabbitmq.yaml ├── rabbitmq ├── .gitignore └── docker-compose.yml └── redis ├── .gitignore └── docker-compose.yml /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/README.md -------------------------------------------------------------------------------- /commerce-admin/.docker/app-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-admin/.docker/app-entrypoint.sh -------------------------------------------------------------------------------- /commerce-admin/.docker/prod-app-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-admin/.docker/prod-app-entrypoint.sh -------------------------------------------------------------------------------- /commerce-admin/.docker/worker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-admin/.docker/worker-entrypoint.sh -------------------------------------------------------------------------------- /commerce-admin/.dockerignore: -------------------------------------------------------------------------------- 1 | .docker/.pip -------------------------------------------------------------------------------- /commerce-admin/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-admin/.env.example -------------------------------------------------------------------------------- /commerce-admin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-admin/.gitignore -------------------------------------------------------------------------------- /commerce-admin/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-admin/Dockerfile -------------------------------------------------------------------------------- /commerce-admin/Dockerfile.app.prod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-admin/Dockerfile.app.prod -------------------------------------------------------------------------------- /commerce-admin/Dockerfile.celery.prod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-admin/Dockerfile.celery.prod -------------------------------------------------------------------------------- /commerce-admin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-admin/README.md -------------------------------------------------------------------------------- /commerce-admin/app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-admin/app/__init__.py -------------------------------------------------------------------------------- /commerce-admin/app/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-admin/app/admin.py -------------------------------------------------------------------------------- /commerce-admin/app/admin_tenant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-admin/app/admin_tenant.py -------------------------------------------------------------------------------- /commerce-admin/app/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-admin/app/api.py -------------------------------------------------------------------------------- /commerce-admin/app/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-admin/app/apps.py -------------------------------------------------------------------------------- /commerce-admin/app/fixtures/fake_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-admin/app/fixtures/fake_data.json -------------------------------------------------------------------------------- /commerce-admin/app/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-admin/app/forms.py -------------------------------------------------------------------------------- /commerce-admin/app/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /commerce-admin/app/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /commerce-admin/app/management/commands/admin-site.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-admin/app/management/commands/admin-site.py -------------------------------------------------------------------------------- /commerce-admin/app/middlewares.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-admin/app/middlewares.py -------------------------------------------------------------------------------- /commerce-admin/app/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-admin/app/migrations/0001_initial.py -------------------------------------------------------------------------------- /commerce-admin/app/migrations/0002_auto_20200702_1404.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-admin/app/migrations/0002_auto_20200702_1404.py -------------------------------------------------------------------------------- /commerce-admin/app/migrations/0003_checkout_remote_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-admin/app/migrations/0003_checkout_remote_id.py -------------------------------------------------------------------------------- /commerce-admin/app/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /commerce-admin/app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-admin/app/models.py -------------------------------------------------------------------------------- /commerce-admin/app/receivers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-admin/app/receivers.py -------------------------------------------------------------------------------- /commerce-admin/app/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-admin/app/serializers.py -------------------------------------------------------------------------------- /commerce-admin/app/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-admin/app/tests.py -------------------------------------------------------------------------------- /commerce-admin/app/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-admin/app/urls.py -------------------------------------------------------------------------------- /commerce-admin/app/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /commerce-admin/auth_app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-admin/auth_app/__init__.py -------------------------------------------------------------------------------- /commerce-admin/auth_app/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-admin/auth_app/admin.py -------------------------------------------------------------------------------- /commerce-admin/auth_app/admin_tenant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-admin/auth_app/admin_tenant.py -------------------------------------------------------------------------------- /commerce-admin/auth_app/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-admin/auth_app/apps.py -------------------------------------------------------------------------------- /commerce-admin/auth_app/fixtures/fake_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-admin/auth_app/fixtures/fake_data.json -------------------------------------------------------------------------------- /commerce-admin/auth_app/fixtures/initial_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-admin/auth_app/fixtures/initial_data.json -------------------------------------------------------------------------------- /commerce-admin/auth_app/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /commerce-admin/auth_app/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /commerce-admin/auth_app/management/commands/sync_tenant_permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-admin/auth_app/management/commands/sync_tenant_permissions.py -------------------------------------------------------------------------------- /commerce-admin/auth_app/managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-admin/auth_app/managers.py -------------------------------------------------------------------------------- /commerce-admin/auth_app/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-admin/auth_app/migrations/0001_initial.py -------------------------------------------------------------------------------- /commerce-admin/auth_app/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /commerce-admin/auth_app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-admin/auth_app/models.py -------------------------------------------------------------------------------- /commerce-admin/auth_app/permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-admin/auth_app/permissions.py -------------------------------------------------------------------------------- /commerce-admin/auth_app/tests.py: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /commerce-admin/auth_app/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /commerce-admin/commerce_admin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-admin/commerce_admin/__init__.py -------------------------------------------------------------------------------- /commerce-admin/commerce_admin/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-admin/commerce_admin/asgi.py -------------------------------------------------------------------------------- /commerce-admin/commerce_admin/celery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-admin/commerce_admin/celery.py -------------------------------------------------------------------------------- /commerce-admin/commerce_admin/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-admin/commerce_admin/settings.py -------------------------------------------------------------------------------- /commerce-admin/commerce_admin/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-admin/commerce_admin/urls.py -------------------------------------------------------------------------------- /commerce-admin/commerce_admin/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-admin/commerce_admin/utils.py -------------------------------------------------------------------------------- /commerce-admin/commerce_admin/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-admin/commerce_admin/wsgi.py -------------------------------------------------------------------------------- /commerce-admin/common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /commerce-admin/common/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-admin/common/models.py -------------------------------------------------------------------------------- /commerce-admin/common/sync_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-admin/common/sync_models.py -------------------------------------------------------------------------------- /commerce-admin/common/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-admin/common/validators.py -------------------------------------------------------------------------------- /commerce-admin/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-admin/docker-compose.yml -------------------------------------------------------------------------------- /commerce-admin/fixtures/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /commerce-admin/fixtures/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-admin/fixtures/apps.py -------------------------------------------------------------------------------- /commerce-admin/fixtures/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /commerce-admin/fixtures/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /commerce-admin/fixtures/management/commands/db-reset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-admin/fixtures/management/commands/db-reset.py -------------------------------------------------------------------------------- /commerce-admin/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-admin/manage.py -------------------------------------------------------------------------------- /commerce-admin/my_admin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-admin/my_admin/__init__.py -------------------------------------------------------------------------------- /commerce-admin/my_admin/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-admin/my_admin/admin.py -------------------------------------------------------------------------------- /commerce-admin/my_admin/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-admin/my_admin/apps.py -------------------------------------------------------------------------------- /commerce-admin/my_admin/backends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-admin/my_admin/backends.py -------------------------------------------------------------------------------- /commerce-admin/my_admin/fixtures/initial_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-admin/my_admin/fixtures/initial_data.json -------------------------------------------------------------------------------- /commerce-admin/my_admin/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-admin/my_admin/migrations/0001_initial.py -------------------------------------------------------------------------------- /commerce-admin/my_admin/migrations/0002_auto_20200629_1359.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-admin/my_admin/migrations/0002_auto_20200629_1359.py -------------------------------------------------------------------------------- /commerce-admin/my_admin/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /commerce-admin/my_admin/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-admin/my_admin/models.py -------------------------------------------------------------------------------- /commerce-admin/my_admin/receivers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-admin/my_admin/receivers.py -------------------------------------------------------------------------------- /commerce-admin/my_admin/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-admin/my_admin/serializers.py -------------------------------------------------------------------------------- /commerce-admin/my_admin/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-admin/my_admin/tests.py -------------------------------------------------------------------------------- /commerce-admin/my_admin/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /commerce-admin/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-admin/requirements.txt -------------------------------------------------------------------------------- /commerce-admin/tenant/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-admin/tenant/__init__.py -------------------------------------------------------------------------------- /commerce-admin/tenant/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-admin/tenant/admin.py -------------------------------------------------------------------------------- /commerce-admin/tenant/admin_tenant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-admin/tenant/admin_tenant.py -------------------------------------------------------------------------------- /commerce-admin/tenant/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-admin/tenant/apps.py -------------------------------------------------------------------------------- /commerce-admin/tenant/backends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-admin/tenant/backends.py -------------------------------------------------------------------------------- /commerce-admin/tenant/fixtures/fake_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-admin/tenant/fixtures/fake_data.json -------------------------------------------------------------------------------- /commerce-admin/tenant/managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-admin/tenant/managers.py -------------------------------------------------------------------------------- /commerce-admin/tenant/middlewares.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-admin/tenant/middlewares.py -------------------------------------------------------------------------------- /commerce-admin/tenant/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-admin/tenant/migrations/0001_initial.py -------------------------------------------------------------------------------- /commerce-admin/tenant/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /commerce-admin/tenant/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-admin/tenant/models.py -------------------------------------------------------------------------------- /commerce-admin/tenant/receivers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-admin/tenant/receivers.py -------------------------------------------------------------------------------- /commerce-admin/tenant/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-admin/tenant/serializers.py -------------------------------------------------------------------------------- /commerce-admin/tenant/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-admin/tenant/tests.py -------------------------------------------------------------------------------- /commerce-admin/tenant/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-admin/tenant/utils.py -------------------------------------------------------------------------------- /commerce-admin/tenant/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /commerce-shop/.docker/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/.docker/entrypoint.sh -------------------------------------------------------------------------------- /commerce-shop/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/.env.example -------------------------------------------------------------------------------- /commerce-shop/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/.eslintrc.js -------------------------------------------------------------------------------- /commerce-shop/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/.gitignore -------------------------------------------------------------------------------- /commerce-shop/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/.prettierrc -------------------------------------------------------------------------------- /commerce-shop/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/Dockerfile -------------------------------------------------------------------------------- /commerce-shop/Dockerfile.prod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/Dockerfile.prod -------------------------------------------------------------------------------- /commerce-shop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/README.md -------------------------------------------------------------------------------- /commerce-shop/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/docker-compose.yaml -------------------------------------------------------------------------------- /commerce-shop/frontend/img/404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/frontend/img/404.png -------------------------------------------------------------------------------- /commerce-shop/frontend/img/Adidas-Y-3-KAIWA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/frontend/img/Adidas-Y-3-KAIWA.png -------------------------------------------------------------------------------- /commerce-shop/frontend/img/BANNER.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/frontend/img/BANNER.png -------------------------------------------------------------------------------- /commerce-shop/frontend/img/HTB1biCEb25TBuNjSspmq6yDRVXau.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/frontend/img/HTB1biCEb25TBuNjSspmq6yDRVXau.png -------------------------------------------------------------------------------- /commerce-shop/frontend/img/Imagem_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/frontend/img/Imagem_3.png -------------------------------------------------------------------------------- /commerce-shop/frontend/img/Imagem_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/frontend/img/Imagem_4.png -------------------------------------------------------------------------------- /commerce-shop/frontend/img/Nike-Air270-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/frontend/img/Nike-Air270-black.png -------------------------------------------------------------------------------- /commerce-shop/frontend/img/NikeAirZoomZeroPremium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/frontend/img/NikeAirZoomZeroPremium.png -------------------------------------------------------------------------------- /commerce-shop/frontend/img/Puma_Clyde_Court_Men.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/frontend/img/Puma_Clyde_Court_Men.png -------------------------------------------------------------------------------- /commerce-shop/frontend/img/Puma_HOT_WHEELS_RS-X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/frontend/img/Puma_HOT_WHEELS_RS-X.png -------------------------------------------------------------------------------- /commerce-shop/frontend/img/ZEUSLAP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/frontend/img/ZEUSLAP.png -------------------------------------------------------------------------------- /commerce-shop/frontend/img/adidas-y-3-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/frontend/img/adidas-y-3-2.png -------------------------------------------------------------------------------- /commerce-shop/frontend/img/adidasFALCON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/frontend/img/adidasFALCON.png -------------------------------------------------------------------------------- /commerce-shop/frontend/img/apple-watch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/frontend/img/apple-watch.png -------------------------------------------------------------------------------- /commerce-shop/frontend/img/beats-headphones.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/frontend/img/beats-headphones.png -------------------------------------------------------------------------------- /commerce-shop/frontend/img/bike2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/frontend/img/bike2.png -------------------------------------------------------------------------------- /commerce-shop/frontend/img/card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/frontend/img/card.png -------------------------------------------------------------------------------- /commerce-shop/frontend/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/frontend/img/favicon.ico -------------------------------------------------------------------------------- /commerce-shop/frontend/img/homepod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/frontend/img/homepod.png -------------------------------------------------------------------------------- /commerce-shop/frontend/img/ipad-pro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/frontend/img/ipad-pro.png -------------------------------------------------------------------------------- /commerce-shop/frontend/img/iphone-x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/frontend/img/iphone-x.png -------------------------------------------------------------------------------- /commerce-shop/frontend/img/jbl-speaker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/frontend/img/jbl-speaker.png -------------------------------------------------------------------------------- /commerce-shop/frontend/img/jlab-audio-wireless.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/frontend/img/jlab-audio-wireless.png -------------------------------------------------------------------------------- /commerce-shop/frontend/img/logo-nav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/frontend/img/logo-nav.png -------------------------------------------------------------------------------- /commerce-shop/frontend/img/macbook-pro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/frontend/img/macbook-pro.png -------------------------------------------------------------------------------- /commerce-shop/frontend/img/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/frontend/img/menu.png -------------------------------------------------------------------------------- /commerce-shop/frontend/img/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/frontend/img/search.png -------------------------------------------------------------------------------- /commerce-shop/frontend/img/shopping-cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/frontend/img/shopping-cart.png -------------------------------------------------------------------------------- /commerce-shop/frontend/img/slip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/frontend/img/slip.png -------------------------------------------------------------------------------- /commerce-shop/frontend/img/sort-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/frontend/img/sort-down.png -------------------------------------------------------------------------------- /commerce-shop/frontend/img/symbol_22_____3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/frontend/img/symbol_22_____3.png -------------------------------------------------------------------------------- /commerce-shop/frontend/js/checkout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/frontend/js/checkout.js -------------------------------------------------------------------------------- /commerce-shop/frontend/js/component/Address.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/frontend/js/component/Address.js -------------------------------------------------------------------------------- /commerce-shop/frontend/js/component/CustomerProfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/frontend/js/component/CustomerProfile.js -------------------------------------------------------------------------------- /commerce-shop/frontend/js/component/Payment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/frontend/js/component/Payment.js -------------------------------------------------------------------------------- /commerce-shop/frontend/js/component/PaymentSuccess.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/frontend/js/component/PaymentSuccess.js -------------------------------------------------------------------------------- /commerce-shop/frontend/js/component/Step/StepContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/frontend/js/component/Step/StepContext.js -------------------------------------------------------------------------------- /commerce-shop/frontend/js/component/Step/StepContextProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/frontend/js/component/Step/StepContextProvider.js -------------------------------------------------------------------------------- /commerce-shop/frontend/js/component/Step/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/frontend/js/component/Step/index.js -------------------------------------------------------------------------------- /commerce-shop/frontend/js/http/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/frontend/js/http/index.js -------------------------------------------------------------------------------- /commerce-shop/frontend/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/frontend/js/main.js -------------------------------------------------------------------------------- /commerce-shop/frontend/js/util/url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/frontend/js/util/url.js -------------------------------------------------------------------------------- /commerce-shop/frontend/js/util/yup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/frontend/js/util/yup.js -------------------------------------------------------------------------------- /commerce-shop/frontend/scss/_assets.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/frontend/scss/_assets.scss -------------------------------------------------------------------------------- /commerce-shop/frontend/scss/_cart.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/frontend/scss/_cart.scss -------------------------------------------------------------------------------- /commerce-shop/frontend/scss/_category.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/frontend/scss/_category.scss -------------------------------------------------------------------------------- /commerce-shop/frontend/scss/_commons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/frontend/scss/_commons.scss -------------------------------------------------------------------------------- /commerce-shop/frontend/scss/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/frontend/scss/_footer.scss -------------------------------------------------------------------------------- /commerce-shop/frontend/scss/_home.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/frontend/scss/_home.scss -------------------------------------------------------------------------------- /commerce-shop/frontend/scss/_login.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/frontend/scss/_login.scss -------------------------------------------------------------------------------- /commerce-shop/frontend/scss/_mixin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/frontend/scss/_mixin.scss -------------------------------------------------------------------------------- /commerce-shop/frontend/scss/_navbar-progress.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/frontend/scss/_navbar-progress.scss -------------------------------------------------------------------------------- /commerce-shop/frontend/scss/_navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/frontend/scss/_navbar.scss -------------------------------------------------------------------------------- /commerce-shop/frontend/scss/_payment-success.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/frontend/scss/_payment-success.scss -------------------------------------------------------------------------------- /commerce-shop/frontend/scss/_payment.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/frontend/scss/_payment.scss -------------------------------------------------------------------------------- /commerce-shop/frontend/scss/_placeholders.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/frontend/scss/_placeholders.scss -------------------------------------------------------------------------------- /commerce-shop/frontend/scss/_product.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/frontend/scss/_product.scss -------------------------------------------------------------------------------- /commerce-shop/frontend/scss/_register.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/frontend/scss/_register.scss -------------------------------------------------------------------------------- /commerce-shop/frontend/scss/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/frontend/scss/main.scss -------------------------------------------------------------------------------- /commerce-shop/mix-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/mix-manifest.json -------------------------------------------------------------------------------- /commerce-shop/nest-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/nest-cli.json -------------------------------------------------------------------------------- /commerce-shop/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/package-lock.json -------------------------------------------------------------------------------- /commerce-shop/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/package.json -------------------------------------------------------------------------------- /commerce-shop/public/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/public/css/main.css -------------------------------------------------------------------------------- /commerce-shop/public/img/404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/public/img/404.png -------------------------------------------------------------------------------- /commerce-shop/public/img/Adidas-Y-3-KAIWA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/public/img/Adidas-Y-3-KAIWA.png -------------------------------------------------------------------------------- /commerce-shop/public/img/BANNER.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/public/img/BANNER.png -------------------------------------------------------------------------------- /commerce-shop/public/img/HTB1biCEb25TBuNjSspmq6yDRVXau.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/public/img/HTB1biCEb25TBuNjSspmq6yDRVXau.png -------------------------------------------------------------------------------- /commerce-shop/public/img/Imagem_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/public/img/Imagem_3.png -------------------------------------------------------------------------------- /commerce-shop/public/img/Imagem_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/public/img/Imagem_4.png -------------------------------------------------------------------------------- /commerce-shop/public/img/Nike-Air270-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/public/img/Nike-Air270-black.png -------------------------------------------------------------------------------- /commerce-shop/public/img/NikeAirZoomZeroPremium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/public/img/NikeAirZoomZeroPremium.png -------------------------------------------------------------------------------- /commerce-shop/public/img/Puma_Clyde_Court_Men.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/public/img/Puma_Clyde_Court_Men.png -------------------------------------------------------------------------------- /commerce-shop/public/img/Puma_HOT_WHEELS_RS-X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/public/img/Puma_HOT_WHEELS_RS-X.png -------------------------------------------------------------------------------- /commerce-shop/public/img/ZEUSLAP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/public/img/ZEUSLAP.png -------------------------------------------------------------------------------- /commerce-shop/public/img/adidas-y-3-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/public/img/adidas-y-3-2.png -------------------------------------------------------------------------------- /commerce-shop/public/img/adidasFALCON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/public/img/adidasFALCON.png -------------------------------------------------------------------------------- /commerce-shop/public/img/apple-watch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/public/img/apple-watch.png -------------------------------------------------------------------------------- /commerce-shop/public/img/beats-headphones.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/public/img/beats-headphones.png -------------------------------------------------------------------------------- /commerce-shop/public/img/bike2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/public/img/bike2.png -------------------------------------------------------------------------------- /commerce-shop/public/img/card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/public/img/card.png -------------------------------------------------------------------------------- /commerce-shop/public/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/public/img/favicon.ico -------------------------------------------------------------------------------- /commerce-shop/public/img/homepod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/public/img/homepod.png -------------------------------------------------------------------------------- /commerce-shop/public/img/ipad-pro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/public/img/ipad-pro.png -------------------------------------------------------------------------------- /commerce-shop/public/img/iphone-x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/public/img/iphone-x.png -------------------------------------------------------------------------------- /commerce-shop/public/img/jbl-speaker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/public/img/jbl-speaker.png -------------------------------------------------------------------------------- /commerce-shop/public/img/jlab-audio-wireless.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/public/img/jlab-audio-wireless.png -------------------------------------------------------------------------------- /commerce-shop/public/img/logo-nav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/public/img/logo-nav.png -------------------------------------------------------------------------------- /commerce-shop/public/img/macbook-pro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/public/img/macbook-pro.png -------------------------------------------------------------------------------- /commerce-shop/public/img/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/public/img/menu.png -------------------------------------------------------------------------------- /commerce-shop/public/img/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/public/img/search.png -------------------------------------------------------------------------------- /commerce-shop/public/img/shopping-cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/public/img/shopping-cart.png -------------------------------------------------------------------------------- /commerce-shop/public/img/slip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/public/img/slip.png -------------------------------------------------------------------------------- /commerce-shop/public/img/sort-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/public/img/sort-down.png -------------------------------------------------------------------------------- /commerce-shop/public/img/symbol_22_____3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/public/img/symbol_22_____3.png -------------------------------------------------------------------------------- /commerce-shop/public/img/symbol_total.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/public/img/symbol_total.png -------------------------------------------------------------------------------- /commerce-shop/public/js/checkout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/public/js/checkout.js -------------------------------------------------------------------------------- /commerce-shop/public/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/public/js/main.js -------------------------------------------------------------------------------- /commerce-shop/src/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/src/app.module.ts -------------------------------------------------------------------------------- /commerce-shop/src/app.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/src/app.service.ts -------------------------------------------------------------------------------- /commerce-shop/src/commands/commands.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/src/commands/commands.module.ts -------------------------------------------------------------------------------- /commerce-shop/src/commands/fixtures/fixtures.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/src/commands/fixtures/fixtures.service.spec.ts -------------------------------------------------------------------------------- /commerce-shop/src/commands/fixtures/fixtures.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/src/commands/fixtures/fixtures.service.ts -------------------------------------------------------------------------------- /commerce-shop/src/commands/fixtures/json/category.fixture.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/src/commands/fixtures/json/category.fixture.ts -------------------------------------------------------------------------------- /commerce-shop/src/commands/fixtures/json/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/src/commands/fixtures/json/index.ts -------------------------------------------------------------------------------- /commerce-shop/src/commands/fixtures/json/payment-method-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/src/commands/fixtures/json/payment-method-config.ts -------------------------------------------------------------------------------- /commerce-shop/src/commands/fixtures/json/payment-method.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/src/commands/fixtures/json/payment-method.ts -------------------------------------------------------------------------------- /commerce-shop/src/commands/fixtures/json/product.fixture.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/src/commands/fixtures/json/product.fixture.ts -------------------------------------------------------------------------------- /commerce-shop/src/commands/fixtures/json/tenant.fixture.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/src/commands/fixtures/json/tenant.fixture.ts -------------------------------------------------------------------------------- /commerce-shop/src/console.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/src/console.ts -------------------------------------------------------------------------------- /commerce-shop/src/controllers/cart/cart.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/src/controllers/cart/cart.controller.spec.ts -------------------------------------------------------------------------------- /commerce-shop/src/controllers/cart/cart.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/src/controllers/cart/cart.controller.ts -------------------------------------------------------------------------------- /commerce-shop/src/controllers/category/category.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/src/controllers/category/category.controller.spec.ts -------------------------------------------------------------------------------- /commerce-shop/src/controllers/category/category.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/src/controllers/category/category.controller.ts -------------------------------------------------------------------------------- /commerce-shop/src/controllers/checkout/checkout.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/src/controllers/checkout/checkout.controller.spec.ts -------------------------------------------------------------------------------- /commerce-shop/src/controllers/checkout/checkout.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/src/controllers/checkout/checkout.controller.ts -------------------------------------------------------------------------------- /commerce-shop/src/controllers/home/home.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/src/controllers/home/home.controller.spec.ts -------------------------------------------------------------------------------- /commerce-shop/src/controllers/home/home.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/src/controllers/home/home.controller.ts -------------------------------------------------------------------------------- /commerce-shop/src/controllers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/src/controllers/index.ts -------------------------------------------------------------------------------- /commerce-shop/src/controllers/product/product.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/src/controllers/product/product.controller.spec.ts -------------------------------------------------------------------------------- /commerce-shop/src/controllers/product/product.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/src/controllers/product/product.controller.ts -------------------------------------------------------------------------------- /commerce-shop/src/controllers/search/search.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/src/controllers/search/search.controller.spec.ts -------------------------------------------------------------------------------- /commerce-shop/src/controllers/search/search.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/src/controllers/search/search.controller.ts -------------------------------------------------------------------------------- /commerce-shop/src/decorators/cart.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/src/decorators/cart.decorator.ts -------------------------------------------------------------------------------- /commerce-shop/src/decorators/categories-default.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/src/decorators/categories-default.decorator.ts -------------------------------------------------------------------------------- /commerce-shop/src/decorators/main-dependencies.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/src/decorators/main-dependencies.decorator.ts -------------------------------------------------------------------------------- /commerce-shop/src/decorators/order-product.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/src/decorators/order-product.decorator.ts -------------------------------------------------------------------------------- /commerce-shop/src/decorators/pagination.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/src/decorators/pagination.decorator.ts -------------------------------------------------------------------------------- /commerce-shop/src/decorators/payment-method-config-greater-installments.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/src/decorators/payment-method-config-greater-installments.decorator.ts -------------------------------------------------------------------------------- /commerce-shop/src/decorators/tenant.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/src/decorators/tenant.decorator.ts -------------------------------------------------------------------------------- /commerce-shop/src/elasticsearch/elasticsearch.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/src/elasticsearch/elasticsearch.module.ts -------------------------------------------------------------------------------- /commerce-shop/src/elasticsearch/es-data-source/es-data-source.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/src/elasticsearch/es-data-source/es-data-source.service.spec.ts -------------------------------------------------------------------------------- /commerce-shop/src/elasticsearch/es-data-source/es-data-source.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/src/elasticsearch/es-data-source/es-data-source.service.ts -------------------------------------------------------------------------------- /commerce-shop/src/interceptors/cart.interceptor.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/src/interceptors/cart.interceptor.spec.ts -------------------------------------------------------------------------------- /commerce-shop/src/interceptors/cart.interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/src/interceptors/cart.interceptor.ts -------------------------------------------------------------------------------- /commerce-shop/src/interceptors/categories-default.interceptor.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/src/interceptors/categories-default.interceptor.spec.ts -------------------------------------------------------------------------------- /commerce-shop/src/interceptors/categories-default.interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/src/interceptors/categories-default.interceptor.ts -------------------------------------------------------------------------------- /commerce-shop/src/interceptors/payment-method-config-greater-installments.interceptor.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/src/interceptors/payment-method-config-greater-installments.interceptor.spec.ts -------------------------------------------------------------------------------- /commerce-shop/src/interceptors/payment-method-config-greater-installments.interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/src/interceptors/payment-method-config-greater-installments.interceptor.ts -------------------------------------------------------------------------------- /commerce-shop/src/interceptors/tenant.interceptor.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/src/interceptors/tenant.interceptor.spec.ts -------------------------------------------------------------------------------- /commerce-shop/src/interceptors/tenant.interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/src/interceptors/tenant.interceptor.ts -------------------------------------------------------------------------------- /commerce-shop/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/src/main.ts -------------------------------------------------------------------------------- /commerce-shop/src/middlewares/tenant.middleware.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/src/middlewares/tenant.middleware.spec.ts -------------------------------------------------------------------------------- /commerce-shop/src/middlewares/tenant.middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/src/middlewares/tenant.middleware.ts -------------------------------------------------------------------------------- /commerce-shop/src/models/base-tenant.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/src/models/base-tenant.model.ts -------------------------------------------------------------------------------- /commerce-shop/src/models/category.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/src/models/category.model.ts -------------------------------------------------------------------------------- /commerce-shop/src/models/payment-method-config.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/src/models/payment-method-config.model.ts -------------------------------------------------------------------------------- /commerce-shop/src/models/payment-method.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/src/models/payment-method.model.ts -------------------------------------------------------------------------------- /commerce-shop/src/models/product.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/src/models/product.model.ts -------------------------------------------------------------------------------- /commerce-shop/src/models/tenant.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/src/models/tenant.model.ts -------------------------------------------------------------------------------- /commerce-shop/src/repositories/base.repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/src/repositories/base.repository.ts -------------------------------------------------------------------------------- /commerce-shop/src/repositories/category/category.repository.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/src/repositories/category/category.repository.spec.ts -------------------------------------------------------------------------------- /commerce-shop/src/repositories/category/category.repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/src/repositories/category/category.repository.ts -------------------------------------------------------------------------------- /commerce-shop/src/repositories/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/src/repositories/index.ts -------------------------------------------------------------------------------- /commerce-shop/src/repositories/payment-method-config/payment-method-config.repository.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/src/repositories/payment-method-config/payment-method-config.repository.spec.ts -------------------------------------------------------------------------------- /commerce-shop/src/repositories/payment-method-config/payment-method-config.repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/src/repositories/payment-method-config/payment-method-config.repository.ts -------------------------------------------------------------------------------- /commerce-shop/src/repositories/payment-method/payment-method.repository.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/src/repositories/payment-method/payment-method.repository.spec.ts -------------------------------------------------------------------------------- /commerce-shop/src/repositories/payment-method/payment-method.repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/src/repositories/payment-method/payment-method.repository.ts -------------------------------------------------------------------------------- /commerce-shop/src/repositories/product/product.repository.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/src/repositories/product/product.repository.spec.ts -------------------------------------------------------------------------------- /commerce-shop/src/repositories/product/product.repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/src/repositories/product/product.repository.ts -------------------------------------------------------------------------------- /commerce-shop/src/repositories/tenant/tenant.repository.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/src/repositories/tenant/tenant.repository.spec.ts -------------------------------------------------------------------------------- /commerce-shop/src/repositories/tenant/tenant.repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/src/repositories/tenant/tenant.repository.ts -------------------------------------------------------------------------------- /commerce-shop/src/services/cart/cart.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/src/services/cart/cart.service.spec.ts -------------------------------------------------------------------------------- /commerce-shop/src/services/cart/cart.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/src/services/cart/cart.service.ts -------------------------------------------------------------------------------- /commerce-shop/src/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/src/services/index.ts -------------------------------------------------------------------------------- /commerce-shop/src/services/navbar/navbar.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/src/services/navbar/navbar.service.spec.ts -------------------------------------------------------------------------------- /commerce-shop/src/services/navbar/navbar.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/src/services/navbar/navbar.service.ts -------------------------------------------------------------------------------- /commerce-shop/src/services/tenant/tenant.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/src/services/tenant/tenant.service.spec.ts -------------------------------------------------------------------------------- /commerce-shop/src/services/tenant/tenant.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/src/services/tenant/tenant.service.ts -------------------------------------------------------------------------------- /commerce-shop/src/sync/base-model-sync.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/src/sync/base-model-sync.service.ts -------------------------------------------------------------------------------- /commerce-shop/src/sync/category/category-sync.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/src/sync/category/category-sync.service.spec.ts -------------------------------------------------------------------------------- /commerce-shop/src/sync/category/category-sync.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/src/sync/category/category-sync.service.ts -------------------------------------------------------------------------------- /commerce-shop/src/sync/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/src/sync/index.ts -------------------------------------------------------------------------------- /commerce-shop/src/sync/payment-method-config/payment-method-config-sync.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/src/sync/payment-method-config/payment-method-config-sync.service.spec.ts -------------------------------------------------------------------------------- /commerce-shop/src/sync/payment-method-config/payment-method-config-sync.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/src/sync/payment-method-config/payment-method-config-sync.service.ts -------------------------------------------------------------------------------- /commerce-shop/src/sync/payment-method/payment-method-sync.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/src/sync/payment-method/payment-method-sync.service.spec.ts -------------------------------------------------------------------------------- /commerce-shop/src/sync/payment-method/payment-method-sync.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/src/sync/payment-method/payment-method-sync.service.ts -------------------------------------------------------------------------------- /commerce-shop/src/sync/product/product-sync.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/src/sync/product/product-sync.service.spec.ts -------------------------------------------------------------------------------- /commerce-shop/src/sync/product/product-sync.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/src/sync/product/product-sync.service.ts -------------------------------------------------------------------------------- /commerce-shop/src/sync/tenant/tenant-sync.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/src/sync/tenant/tenant-sync.service.spec.ts -------------------------------------------------------------------------------- /commerce-shop/src/sync/tenant/tenant-sync.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/src/sync/tenant/tenant-sync.service.ts -------------------------------------------------------------------------------- /commerce-shop/test/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/test/app.e2e-spec.ts -------------------------------------------------------------------------------- /commerce-shop/test/jest-e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/test/jest-e2e.json -------------------------------------------------------------------------------- /commerce-shop/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/tsconfig.build.json -------------------------------------------------------------------------------- /commerce-shop/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/tsconfig.json -------------------------------------------------------------------------------- /commerce-shop/views/cart/show.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/views/cart/show.hbs -------------------------------------------------------------------------------- /commerce-shop/views/category/show.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/views/category/show.hbs -------------------------------------------------------------------------------- /commerce-shop/views/checkout.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/views/checkout.hbs -------------------------------------------------------------------------------- /commerce-shop/views/checkout/payment-success.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/views/checkout/payment-success.hbs -------------------------------------------------------------------------------- /commerce-shop/views/home.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/views/home.hbs -------------------------------------------------------------------------------- /commerce-shop/views/layouts/layout.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/views/layouts/layout.hbs -------------------------------------------------------------------------------- /commerce-shop/views/partials/footer.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/views/partials/footer.hbs -------------------------------------------------------------------------------- /commerce-shop/views/partials/navbar.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/views/partials/navbar.hbs -------------------------------------------------------------------------------- /commerce-shop/views/product/show.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/views/product/show.hbs -------------------------------------------------------------------------------- /commerce-shop/webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/commerce-shop/webpack.mix.js -------------------------------------------------------------------------------- /k8s/admin/admin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/k8s/admin/admin.yaml -------------------------------------------------------------------------------- /k8s/admin/redis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/k8s/admin/redis.yaml -------------------------------------------------------------------------------- /k8s/assinaturas/assinaturas.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/k8s/assinaturas/assinaturas.yaml -------------------------------------------------------------------------------- /k8s/assinaturas/sql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/k8s/assinaturas/sql.sql -------------------------------------------------------------------------------- /k8s/loja/loja.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/k8s/loja/loja.yaml -------------------------------------------------------------------------------- /k8s/loja/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/k8s/loja/values.yaml -------------------------------------------------------------------------------- /k8s/rabbitmq/rabbitmq.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/k8s/rabbitmq/rabbitmq.yaml -------------------------------------------------------------------------------- /rabbitmq/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | .vscode 3 | rabbitmq_data -------------------------------------------------------------------------------- /rabbitmq/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/rabbitmq/docker-compose.yml -------------------------------------------------------------------------------- /redis/.gitignore: -------------------------------------------------------------------------------- 1 | redisdata/ -------------------------------------------------------------------------------- /redis/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratonafc3-repo-main/HEAD/redis/docker-compose.yml --------------------------------------------------------------------------------