├── .DS_Store ├── .gitignore ├── part-2 ├── .gitignore ├── conftest.py ├── ecommerce │ ├── __init__.py │ ├── asgi.py │ ├── dashboard │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── fixtures │ │ │ └── db_admin_fixture.json │ │ ├── migrations │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── tests │ │ │ └── test_selenium_dashboard.py │ │ └── views.py │ ├── demo │ │ ├── __init__.py │ │ ├── apps.py │ │ ├── management │ │ │ └── commands │ │ │ │ └── load-fixtures.py │ │ └── migrations │ │ │ └── __init__.py │ ├── inventory │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── fixtures │ │ │ ├── db_brand_fixture.json │ │ │ ├── db_category_fixture.json │ │ │ ├── db_category_product_fixture.json │ │ │ ├── db_media_fixture.json │ │ │ ├── db_product_attribute_fixture.json │ │ │ ├── db_product_attribute_value_fixture.json │ │ │ ├── db_product_attribute_values_fixture.json │ │ │ ├── db_product_fixture.json │ │ │ ├── db_product_inventory_fixture.json │ │ │ ├── db_stock_fixture.json │ │ │ └── db_type_fixture.json │ │ ├── migrations │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── tests │ │ │ └── test_db_fixtures.py │ │ └── views.py │ ├── settings.py │ ├── tests │ │ ├── factories.py │ │ ├── fixtures.py │ │ └── selenium.py │ ├── urls.py │ └── wsgi.py ├── manage.py ├── mydata.json ├── notes.md ├── phase-1.zip ├── phase-2.zip ├── phase-3.zip ├── phase-4.zip ├── phase-5.zip ├── pytest.ini └── requirements.txt ├── part-3 ├── .DS_Store ├── .gitignore ├── conftest.py ├── docker-compose.yml ├── ecommerce │ ├── .DS_Store │ ├── __init__.py │ ├── asgi.py │ ├── dashboard │ │ ├── .DS_Store │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── fixtures │ │ │ └── db_admin_fixture.json │ │ ├── migrations │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ └── __init__.cpython-39.pyc │ │ ├── models.py │ │ ├── tests │ │ │ └── test_selenium_dashboard.py │ │ └── views.py │ ├── demo │ │ ├── .DS_Store │ │ ├── __init__.py │ │ ├── apps.py │ │ ├── management │ │ │ └── commands │ │ │ │ ├── __pycache__ │ │ │ │ └── load-fixtures.cpython-39.pyc │ │ │ │ └── load-fixtures.py │ │ ├── migrations │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ └── __init__.cpython-39.pyc │ │ ├── templates │ │ │ ├── base.html │ │ │ ├── categories.html │ │ │ ├── index.html │ │ │ ├── product_by_category.html │ │ │ └── product_detail.html │ │ ├── urls.py │ │ └── views.py │ ├── inventory │ │ ├── .DS_Store │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── fixtures │ │ │ ├── _db_product_fixture.json │ │ │ ├── _db_stock_fixture.json │ │ │ ├── db_brand_fixture.json │ │ │ ├── db_category_fixture.json │ │ │ ├── db_category_product_fixture.json │ │ │ ├── db_media_fixture.json │ │ │ ├── db_product_attribute_fixture.json │ │ │ ├── db_product_attribute_value_fixture.json │ │ │ ├── db_product_attribute_values_fixture.json │ │ │ ├── db_product_fixture.json │ │ │ ├── db_product_inventory_fixture.json │ │ │ ├── db_product_type_attribute_fixture.json │ │ │ ├── db_stock_fixture.json │ │ │ └── db_type_fixture.json │ │ ├── migrations │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── tests │ │ │ └── test_db_fixtures.py │ │ └── views.py │ ├── settings.py │ ├── tests │ │ ├── factories.py │ │ ├── fixtures.py │ │ └── selenium.py │ ├── urls.py │ └── wsgi.py ├── manage.py ├── pytest.ini └── requirements.txt ├── part-4 ├── .gitignore ├── conftest.py ├── docker-compose.yml ├── ecommerce │ ├── __init__.py │ ├── asgi.py │ ├── dashboard │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── fixtures │ │ │ └── db_admin_fixture.json │ │ ├── migrations │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── tests │ │ │ └── test_selenium_dashboard.py │ │ └── views.py │ ├── demo │ │ ├── __init__.py │ │ ├── apps.py │ │ ├── management │ │ │ └── commands │ │ │ │ └── load-fixtures.py │ │ ├── migrations │ │ │ └── __init__.py │ │ ├── templates │ │ │ ├── base.html │ │ │ ├── categories.html │ │ │ ├── index.html │ │ │ ├── product_by_category.html │ │ │ └── product_detail.html │ │ ├── urls.py │ │ └── views.py │ ├── inventory │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── documents.py │ │ ├── migrations │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── tests │ │ │ └── test_db_fixtures.py │ │ └── views.py │ ├── settings.py │ ├── tests │ │ ├── factories.py │ │ ├── fixtures.py │ │ └── selenium.py │ ├── urls.py │ └── wsgi.py ├── manage.py ├── pytest.ini └── requirements.txt ├── part-5 ├── .DS_Store ├── conftest.py ├── doc.md ├── docker-compose.yml ├── ecommerce │ ├── .DS_Store │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ ├── settings.cpython-39.pyc │ │ ├── urls.cpython-39.pyc │ │ └── wsgi.cpython-39.pyc │ ├── asgi.py │ ├── dashboard │ │ ├── .DS_Store │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── admin.cpython-39.pyc │ │ │ ├── apps.cpython-39.pyc │ │ │ └── models.cpython-39.pyc │ │ ├── admin.py │ │ ├── apps.py │ │ ├── fixtures │ │ │ └── db_admin_fixture.json │ │ ├── migrations │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ └── __init__.cpython-39.pyc │ │ ├── models.py │ │ ├── tests │ │ │ └── test_selenium_dashboard.py │ │ └── views.py │ ├── demo │ │ ├── .DS_Store │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── apps.cpython-39.pyc │ │ │ ├── urls.cpython-39.pyc │ │ │ └── views.cpython-39.pyc │ │ ├── apps.py │ │ ├── management │ │ │ └── commands │ │ │ │ ├── __pycache__ │ │ │ │ └── load-fixtures.cpython-39.pyc │ │ │ │ └── load-fixtures.py │ │ ├── migrations │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ └── __init__.cpython-39.pyc │ │ ├── templates │ │ │ ├── base.html │ │ │ ├── categories.html │ │ │ ├── index.html │ │ │ ├── product_by_category.html │ │ │ └── product_detail.html │ │ ├── urls.py │ │ └── views.py │ ├── drf │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── admin.cpython-39.pyc │ │ │ ├── apps.cpython-39.pyc │ │ │ ├── models.cpython-39.pyc │ │ │ ├── serializer.cpython-39.pyc │ │ │ └── views.cpython-39.pyc │ │ ├── apps.py │ │ ├── migrations │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ └── __init__.cpython-39.pyc │ │ ├── serializer.py │ │ └── views.py │ ├── inventory │ │ ├── .DS_Store │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── admin.cpython-39.pyc │ │ │ ├── apps.cpython-39.pyc │ │ │ ├── documents.cpython-39.pyc │ │ │ └── models.cpython-39.pyc │ │ ├── apps.py │ │ ├── migrations │ │ │ ├── .DS_Store │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ ├── 0001_initial.cpython-39.pyc │ │ │ │ ├── 0002_rename_image_media_img_url.cpython-39.pyc │ │ │ │ └── __init__.cpython-39.pyc │ │ ├── models.py │ │ └── tests │ │ │ └── test_db_fixtures.py │ ├── settings.py │ ├── tests │ │ ├── factories.py │ │ └── fixtures.py │ ├── urls.py │ └── wsgi.py ├── manage.py ├── pytest.ini └── requirements.txt ├── part-6 ├── .DS_Store ├── conftest.py ├── docker-compose.yml ├── ecommerce │ ├── .DS_Store │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ ├── settings.cpython-39.pyc │ │ ├── urls.cpython-39.pyc │ │ └── wsgi.cpython-39.pyc │ ├── asgi.py │ ├── dashboard │ │ ├── .DS_Store │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── admin.cpython-39.pyc │ │ │ ├── apps.cpython-39.pyc │ │ │ └── models.cpython-39.pyc │ │ ├── admin.py │ │ ├── apps.py │ │ ├── fixtures │ │ │ └── db_admin_fixture.json │ │ ├── migrations │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ └── __init__.cpython-39.pyc │ │ ├── models.py │ │ ├── tests │ │ │ └── test_selenium_dashboard.py │ │ └── views.py │ ├── demo │ │ ├── .DS_Store │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── apps.cpython-39.pyc │ │ │ ├── urls.cpython-39.pyc │ │ │ └── views.cpython-39.pyc │ │ ├── apps.py │ │ ├── management │ │ │ └── commands │ │ │ │ ├── __pycache__ │ │ │ │ └── load-fixtures.cpython-39.pyc │ │ │ │ └── load-fixtures.py │ │ ├── migrations │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ └── __init__.cpython-39.pyc │ │ ├── templates │ │ │ ├── base.html │ │ │ ├── categories.html │ │ │ ├── index.html │ │ │ ├── product_by_category.html │ │ │ └── product_detail.html │ │ ├── urls.py │ │ └── views.py │ ├── drf │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── admin.cpython-39.pyc │ │ │ ├── apps.cpython-39.pyc │ │ │ ├── models.cpython-39.pyc │ │ │ ├── serializer.cpython-39.pyc │ │ │ └── views.cpython-39.pyc │ │ ├── apps.py │ │ ├── migrations │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ └── __init__.cpython-39.pyc │ │ ├── serializer.py │ │ └── views.py │ ├── inventory │ │ ├── .DS_Store │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── admin.cpython-39.pyc │ │ │ ├── apps.cpython-39.pyc │ │ │ ├── documents.cpython-39.pyc │ │ │ └── models.cpython-39.pyc │ │ ├── apps.py │ │ ├── migrations │ │ │ ├── .DS_Store │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ ├── 0001_initial.cpython-39.pyc │ │ │ │ ├── 0002_rename_image_media_img_url.cpython-39.pyc │ │ │ │ └── __init__.cpython-39.pyc │ │ ├── models.py │ │ └── tests │ │ │ └── test_db_fixtures.py │ ├── search │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── admin.cpython-39.pyc │ │ │ ├── apps.cpython-39.pyc │ │ │ ├── documents.cpython-39.pyc │ │ │ ├── models.cpython-39.pyc │ │ │ └── views.cpython-39.pyc │ │ ├── admin.py │ │ ├── apps.py │ │ ├── documents.py │ │ ├── migrations │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ └── __init__.cpython-39.pyc │ │ ├── models.py │ │ ├── tests.py │ │ └── views.py │ ├── settings.py │ ├── tests │ │ ├── factories.py │ │ └── fixtures.py │ ├── urls.py │ └── wsgi.py ├── manage.py ├── pytest.ini └── requirements.txt ├── part-7 ├── conftest.py ├── dev-requirements.txt ├── docker-compose.yml ├── ecommerce │ ├── __init__.py │ ├── asgi.py │ ├── demo │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── fixtures │ │ │ ├── db_admin_fixture_50.json │ │ │ ├── db_brand_fixture_50.json │ │ │ ├── db_category_fixture_50.json │ │ │ ├── db_media_fixture_50.json │ │ │ ├── db_product_attribute_fixture_50.json │ │ │ ├── db_product_attribute_value_fixture_50.json │ │ │ ├── db_product_attribute_values_fixture_50.json │ │ │ ├── db_product_fixture_50.json │ │ │ ├── db_product_inventory_fixture_50.json │ │ │ ├── db_product_type_attribute_fixture_50.json │ │ │ ├── db_stock_fixture_50.json │ │ │ └── db_type_fixture_50.json │ │ ├── management │ │ │ └── commands │ │ │ │ ├── demo-docker.py │ │ │ │ └── demo-fixtures.py │ │ ├── migrations │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── tests.py │ │ └── views.py │ ├── drf │ │ ├── __init__.py │ │ ├── apps.py │ │ ├── migrations │ │ │ └── __init__.py │ │ ├── serializer.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── test_category.py │ │ │ ├── test_product.py │ │ │ └── utils.py │ │ └── views.py │ ├── inventory │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── migrations │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── tests │ │ │ ├── test_category.py │ │ │ └── test_products.py │ │ └── views.py │ ├── search │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── documents.py │ │ ├── migrations │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── tests.py │ │ └── views.py │ ├── settings.py │ ├── tests │ │ ├── api_client.py │ │ └── inventory_fixtures.py │ ├── urls.py │ └── wsgi.py ├── elasticsearch.yml ├── manage.py ├── pytest.ini └── readme.md ├── part-8-django-ninja-example ├── conftest.py ├── dev-requirements.txt ├── docker-compose.yml ├── ecommerce │ ├── __init__.py │ ├── asgi.py │ ├── demo │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── management │ │ │ └── commands │ │ │ │ ├── demo-docker.py │ │ │ │ └── demo-fixtures.py │ │ ├── migrations │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── tests.py │ │ └── views.py │ ├── dninja │ │ ├── __init__.py │ │ ├── api.py │ │ ├── schema.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── test_category.py │ │ │ └── test_product.py │ │ └── urls.py │ ├── drf │ │ ├── __init__.py │ │ ├── apps.py │ │ ├── migrations │ │ │ └── __init__.py │ │ ├── serializer.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── test_category.py │ │ │ ├── test_product.py │ │ │ └── utils.py │ │ └── views.py │ ├── inventory │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── migrations │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── tests │ │ │ ├── test_category.py │ │ │ └── test_products.py │ │ └── views.py │ ├── search │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── documents.py │ │ ├── migrations │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── tests.py │ │ └── views.py │ ├── settings.py │ ├── tests │ │ ├── api_client.py │ │ ├── c_client.py │ │ └── inventory_fixtures.py │ ├── urls.py │ └── wsgi.py ├── elasticsearch.yml ├── manage.py ├── pytest.ini └── readme.md └── part-9 ├── AfterTestingIssues.zip ├── Dockerfile ├── celerybeat-schedule ├── conftest.py ├── docker-compose.yml ├── ecommerce ├── __init__.py ├── asgi.py ├── celery.py ├── demo │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── fixtures │ │ ├── db_admin_fixture_50.json │ │ ├── db_brand_fixture_50.json │ │ ├── db_category_fixture_50.json │ │ ├── db_media_fixture_50.json │ │ ├── db_product_attribute_fixture_50.json │ │ ├── db_product_attribute_value_fixture_50.json │ │ ├── db_product_attribute_values_fixture_50.json │ │ ├── db_product_fixture_50.json │ │ ├── db_product_inventory_fixture_50.json │ │ ├── db_product_type_attribute_fixture_50.json │ │ ├── db_stock_fixture_50.json │ │ └── db_type_fixture_50.json │ ├── management │ │ └── commands │ │ │ ├── demo-docker.py │ │ │ └── demo-fixtures.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── tests.py │ └── views.py ├── drf │ ├── __init__.py │ ├── apps.py │ ├── migrations │ │ └── __init__.py │ ├── serializer.py │ ├── tests │ │ ├── __init__.py │ │ ├── test_category.py │ │ ├── test_product.py │ │ └── utils.py │ └── views.py ├── inventory │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── tests │ │ ├── test_category.py │ │ └── test_products.py │ └── views.py ├── promotion │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── tasks.py │ ├── tests │ │ ├── test_promotion.py │ │ └── test_promotion_management.py │ └── views.py ├── search │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── documents.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── tests.py │ └── views.py ├── settings.py ├── tests │ ├── api_client.py │ ├── inventory_fixtures.py │ └── promotion_fixtures.py ├── urls.py └── wsgi.py ├── elasticsearch.yml ├── manage.py ├── pytest.ini ├── readme.md └── requirements.txt /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/.gitignore -------------------------------------------------------------------------------- /part-2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-2/.gitignore -------------------------------------------------------------------------------- /part-2/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-2/conftest.py -------------------------------------------------------------------------------- /part-2/ecommerce/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /part-2/ecommerce/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-2/ecommerce/asgi.py -------------------------------------------------------------------------------- /part-2/ecommerce/dashboard/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /part-2/ecommerce/dashboard/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-2/ecommerce/dashboard/admin.py -------------------------------------------------------------------------------- /part-2/ecommerce/dashboard/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-2/ecommerce/dashboard/apps.py -------------------------------------------------------------------------------- /part-2/ecommerce/dashboard/fixtures/db_admin_fixture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-2/ecommerce/dashboard/fixtures/db_admin_fixture.json -------------------------------------------------------------------------------- /part-2/ecommerce/dashboard/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /part-2/ecommerce/dashboard/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-2/ecommerce/dashboard/models.py -------------------------------------------------------------------------------- /part-2/ecommerce/dashboard/tests/test_selenium_dashboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-2/ecommerce/dashboard/tests/test_selenium_dashboard.py -------------------------------------------------------------------------------- /part-2/ecommerce/dashboard/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /part-2/ecommerce/demo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /part-2/ecommerce/demo/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-2/ecommerce/demo/apps.py -------------------------------------------------------------------------------- /part-2/ecommerce/demo/management/commands/load-fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-2/ecommerce/demo/management/commands/load-fixtures.py -------------------------------------------------------------------------------- /part-2/ecommerce/demo/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /part-2/ecommerce/inventory/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /part-2/ecommerce/inventory/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-2/ecommerce/inventory/admin.py -------------------------------------------------------------------------------- /part-2/ecommerce/inventory/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-2/ecommerce/inventory/apps.py -------------------------------------------------------------------------------- /part-2/ecommerce/inventory/fixtures/db_brand_fixture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-2/ecommerce/inventory/fixtures/db_brand_fixture.json -------------------------------------------------------------------------------- /part-2/ecommerce/inventory/fixtures/db_category_fixture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-2/ecommerce/inventory/fixtures/db_category_fixture.json -------------------------------------------------------------------------------- /part-2/ecommerce/inventory/fixtures/db_category_product_fixture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-2/ecommerce/inventory/fixtures/db_category_product_fixture.json -------------------------------------------------------------------------------- /part-2/ecommerce/inventory/fixtures/db_media_fixture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-2/ecommerce/inventory/fixtures/db_media_fixture.json -------------------------------------------------------------------------------- /part-2/ecommerce/inventory/fixtures/db_product_attribute_fixture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-2/ecommerce/inventory/fixtures/db_product_attribute_fixture.json -------------------------------------------------------------------------------- /part-2/ecommerce/inventory/fixtures/db_product_attribute_value_fixture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-2/ecommerce/inventory/fixtures/db_product_attribute_value_fixture.json -------------------------------------------------------------------------------- /part-2/ecommerce/inventory/fixtures/db_product_attribute_values_fixture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-2/ecommerce/inventory/fixtures/db_product_attribute_values_fixture.json -------------------------------------------------------------------------------- /part-2/ecommerce/inventory/fixtures/db_product_fixture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-2/ecommerce/inventory/fixtures/db_product_fixture.json -------------------------------------------------------------------------------- /part-2/ecommerce/inventory/fixtures/db_product_inventory_fixture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-2/ecommerce/inventory/fixtures/db_product_inventory_fixture.json -------------------------------------------------------------------------------- /part-2/ecommerce/inventory/fixtures/db_stock_fixture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-2/ecommerce/inventory/fixtures/db_stock_fixture.json -------------------------------------------------------------------------------- /part-2/ecommerce/inventory/fixtures/db_type_fixture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-2/ecommerce/inventory/fixtures/db_type_fixture.json -------------------------------------------------------------------------------- /part-2/ecommerce/inventory/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /part-2/ecommerce/inventory/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-2/ecommerce/inventory/models.py -------------------------------------------------------------------------------- /part-2/ecommerce/inventory/tests/test_db_fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-2/ecommerce/inventory/tests/test_db_fixtures.py -------------------------------------------------------------------------------- /part-2/ecommerce/inventory/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /part-2/ecommerce/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-2/ecommerce/settings.py -------------------------------------------------------------------------------- /part-2/ecommerce/tests/factories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-2/ecommerce/tests/factories.py -------------------------------------------------------------------------------- /part-2/ecommerce/tests/fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-2/ecommerce/tests/fixtures.py -------------------------------------------------------------------------------- /part-2/ecommerce/tests/selenium.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-2/ecommerce/tests/selenium.py -------------------------------------------------------------------------------- /part-2/ecommerce/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-2/ecommerce/urls.py -------------------------------------------------------------------------------- /part-2/ecommerce/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-2/ecommerce/wsgi.py -------------------------------------------------------------------------------- /part-2/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-2/manage.py -------------------------------------------------------------------------------- /part-2/mydata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-2/mydata.json -------------------------------------------------------------------------------- /part-2/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-2/notes.md -------------------------------------------------------------------------------- /part-2/phase-1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-2/phase-1.zip -------------------------------------------------------------------------------- /part-2/phase-2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-2/phase-2.zip -------------------------------------------------------------------------------- /part-2/phase-3.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-2/phase-3.zip -------------------------------------------------------------------------------- /part-2/phase-4.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-2/phase-4.zip -------------------------------------------------------------------------------- /part-2/phase-5.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-2/phase-5.zip -------------------------------------------------------------------------------- /part-2/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-2/pytest.ini -------------------------------------------------------------------------------- /part-2/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-2/requirements.txt -------------------------------------------------------------------------------- /part-3/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-3/.DS_Store -------------------------------------------------------------------------------- /part-3/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-3/.gitignore -------------------------------------------------------------------------------- /part-3/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-3/conftest.py -------------------------------------------------------------------------------- /part-3/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-3/docker-compose.yml -------------------------------------------------------------------------------- /part-3/ecommerce/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-3/ecommerce/.DS_Store -------------------------------------------------------------------------------- /part-3/ecommerce/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /part-3/ecommerce/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-3/ecommerce/asgi.py -------------------------------------------------------------------------------- /part-3/ecommerce/dashboard/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-3/ecommerce/dashboard/.DS_Store -------------------------------------------------------------------------------- /part-3/ecommerce/dashboard/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /part-3/ecommerce/dashboard/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-3/ecommerce/dashboard/admin.py -------------------------------------------------------------------------------- /part-3/ecommerce/dashboard/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-3/ecommerce/dashboard/apps.py -------------------------------------------------------------------------------- /part-3/ecommerce/dashboard/fixtures/db_admin_fixture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-3/ecommerce/dashboard/fixtures/db_admin_fixture.json -------------------------------------------------------------------------------- /part-3/ecommerce/dashboard/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /part-3/ecommerce/dashboard/migrations/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-3/ecommerce/dashboard/migrations/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /part-3/ecommerce/dashboard/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-3/ecommerce/dashboard/models.py -------------------------------------------------------------------------------- /part-3/ecommerce/dashboard/tests/test_selenium_dashboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-3/ecommerce/dashboard/tests/test_selenium_dashboard.py -------------------------------------------------------------------------------- /part-3/ecommerce/dashboard/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /part-3/ecommerce/demo/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-3/ecommerce/demo/.DS_Store -------------------------------------------------------------------------------- /part-3/ecommerce/demo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /part-3/ecommerce/demo/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-3/ecommerce/demo/apps.py -------------------------------------------------------------------------------- /part-3/ecommerce/demo/management/commands/__pycache__/load-fixtures.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-3/ecommerce/demo/management/commands/__pycache__/load-fixtures.cpython-39.pyc -------------------------------------------------------------------------------- /part-3/ecommerce/demo/management/commands/load-fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-3/ecommerce/demo/management/commands/load-fixtures.py -------------------------------------------------------------------------------- /part-3/ecommerce/demo/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /part-3/ecommerce/demo/migrations/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-3/ecommerce/demo/migrations/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /part-3/ecommerce/demo/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-3/ecommerce/demo/templates/base.html -------------------------------------------------------------------------------- /part-3/ecommerce/demo/templates/categories.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-3/ecommerce/demo/templates/categories.html -------------------------------------------------------------------------------- /part-3/ecommerce/demo/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-3/ecommerce/demo/templates/index.html -------------------------------------------------------------------------------- /part-3/ecommerce/demo/templates/product_by_category.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-3/ecommerce/demo/templates/product_by_category.html -------------------------------------------------------------------------------- /part-3/ecommerce/demo/templates/product_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-3/ecommerce/demo/templates/product_detail.html -------------------------------------------------------------------------------- /part-3/ecommerce/demo/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-3/ecommerce/demo/urls.py -------------------------------------------------------------------------------- /part-3/ecommerce/demo/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-3/ecommerce/demo/views.py -------------------------------------------------------------------------------- /part-3/ecommerce/inventory/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-3/ecommerce/inventory/.DS_Store -------------------------------------------------------------------------------- /part-3/ecommerce/inventory/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /part-3/ecommerce/inventory/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-3/ecommerce/inventory/admin.py -------------------------------------------------------------------------------- /part-3/ecommerce/inventory/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-3/ecommerce/inventory/apps.py -------------------------------------------------------------------------------- /part-3/ecommerce/inventory/fixtures/_db_product_fixture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-3/ecommerce/inventory/fixtures/_db_product_fixture.json -------------------------------------------------------------------------------- /part-3/ecommerce/inventory/fixtures/_db_stock_fixture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-3/ecommerce/inventory/fixtures/_db_stock_fixture.json -------------------------------------------------------------------------------- /part-3/ecommerce/inventory/fixtures/db_brand_fixture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-3/ecommerce/inventory/fixtures/db_brand_fixture.json -------------------------------------------------------------------------------- /part-3/ecommerce/inventory/fixtures/db_category_fixture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-3/ecommerce/inventory/fixtures/db_category_fixture.json -------------------------------------------------------------------------------- /part-3/ecommerce/inventory/fixtures/db_category_product_fixture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-3/ecommerce/inventory/fixtures/db_category_product_fixture.json -------------------------------------------------------------------------------- /part-3/ecommerce/inventory/fixtures/db_media_fixture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-3/ecommerce/inventory/fixtures/db_media_fixture.json -------------------------------------------------------------------------------- /part-3/ecommerce/inventory/fixtures/db_product_attribute_fixture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-3/ecommerce/inventory/fixtures/db_product_attribute_fixture.json -------------------------------------------------------------------------------- /part-3/ecommerce/inventory/fixtures/db_product_attribute_value_fixture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-3/ecommerce/inventory/fixtures/db_product_attribute_value_fixture.json -------------------------------------------------------------------------------- /part-3/ecommerce/inventory/fixtures/db_product_attribute_values_fixture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-3/ecommerce/inventory/fixtures/db_product_attribute_values_fixture.json -------------------------------------------------------------------------------- /part-3/ecommerce/inventory/fixtures/db_product_fixture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-3/ecommerce/inventory/fixtures/db_product_fixture.json -------------------------------------------------------------------------------- /part-3/ecommerce/inventory/fixtures/db_product_inventory_fixture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-3/ecommerce/inventory/fixtures/db_product_inventory_fixture.json -------------------------------------------------------------------------------- /part-3/ecommerce/inventory/fixtures/db_product_type_attribute_fixture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-3/ecommerce/inventory/fixtures/db_product_type_attribute_fixture.json -------------------------------------------------------------------------------- /part-3/ecommerce/inventory/fixtures/db_stock_fixture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-3/ecommerce/inventory/fixtures/db_stock_fixture.json -------------------------------------------------------------------------------- /part-3/ecommerce/inventory/fixtures/db_type_fixture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-3/ecommerce/inventory/fixtures/db_type_fixture.json -------------------------------------------------------------------------------- /part-3/ecommerce/inventory/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /part-3/ecommerce/inventory/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-3/ecommerce/inventory/models.py -------------------------------------------------------------------------------- /part-3/ecommerce/inventory/tests/test_db_fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-3/ecommerce/inventory/tests/test_db_fixtures.py -------------------------------------------------------------------------------- /part-3/ecommerce/inventory/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /part-3/ecommerce/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-3/ecommerce/settings.py -------------------------------------------------------------------------------- /part-3/ecommerce/tests/factories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-3/ecommerce/tests/factories.py -------------------------------------------------------------------------------- /part-3/ecommerce/tests/fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-3/ecommerce/tests/fixtures.py -------------------------------------------------------------------------------- /part-3/ecommerce/tests/selenium.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-3/ecommerce/tests/selenium.py -------------------------------------------------------------------------------- /part-3/ecommerce/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-3/ecommerce/urls.py -------------------------------------------------------------------------------- /part-3/ecommerce/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-3/ecommerce/wsgi.py -------------------------------------------------------------------------------- /part-3/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-3/manage.py -------------------------------------------------------------------------------- /part-3/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-3/pytest.ini -------------------------------------------------------------------------------- /part-3/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-3/requirements.txt -------------------------------------------------------------------------------- /part-4/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-4/.gitignore -------------------------------------------------------------------------------- /part-4/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-4/conftest.py -------------------------------------------------------------------------------- /part-4/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-4/docker-compose.yml -------------------------------------------------------------------------------- /part-4/ecommerce/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /part-4/ecommerce/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-4/ecommerce/asgi.py -------------------------------------------------------------------------------- /part-4/ecommerce/dashboard/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /part-4/ecommerce/dashboard/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-4/ecommerce/dashboard/admin.py -------------------------------------------------------------------------------- /part-4/ecommerce/dashboard/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-4/ecommerce/dashboard/apps.py -------------------------------------------------------------------------------- /part-4/ecommerce/dashboard/fixtures/db_admin_fixture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-4/ecommerce/dashboard/fixtures/db_admin_fixture.json -------------------------------------------------------------------------------- /part-4/ecommerce/dashboard/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /part-4/ecommerce/dashboard/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-4/ecommerce/dashboard/models.py -------------------------------------------------------------------------------- /part-4/ecommerce/dashboard/tests/test_selenium_dashboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-4/ecommerce/dashboard/tests/test_selenium_dashboard.py -------------------------------------------------------------------------------- /part-4/ecommerce/dashboard/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /part-4/ecommerce/demo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /part-4/ecommerce/demo/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-4/ecommerce/demo/apps.py -------------------------------------------------------------------------------- /part-4/ecommerce/demo/management/commands/load-fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-4/ecommerce/demo/management/commands/load-fixtures.py -------------------------------------------------------------------------------- /part-4/ecommerce/demo/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /part-4/ecommerce/demo/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-4/ecommerce/demo/templates/base.html -------------------------------------------------------------------------------- /part-4/ecommerce/demo/templates/categories.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-4/ecommerce/demo/templates/categories.html -------------------------------------------------------------------------------- /part-4/ecommerce/demo/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-4/ecommerce/demo/templates/index.html -------------------------------------------------------------------------------- /part-4/ecommerce/demo/templates/product_by_category.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-4/ecommerce/demo/templates/product_by_category.html -------------------------------------------------------------------------------- /part-4/ecommerce/demo/templates/product_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-4/ecommerce/demo/templates/product_detail.html -------------------------------------------------------------------------------- /part-4/ecommerce/demo/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-4/ecommerce/demo/urls.py -------------------------------------------------------------------------------- /part-4/ecommerce/demo/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-4/ecommerce/demo/views.py -------------------------------------------------------------------------------- /part-4/ecommerce/inventory/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /part-4/ecommerce/inventory/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-4/ecommerce/inventory/admin.py -------------------------------------------------------------------------------- /part-4/ecommerce/inventory/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-4/ecommerce/inventory/apps.py -------------------------------------------------------------------------------- /part-4/ecommerce/inventory/documents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-4/ecommerce/inventory/documents.py -------------------------------------------------------------------------------- /part-4/ecommerce/inventory/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /part-4/ecommerce/inventory/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-4/ecommerce/inventory/models.py -------------------------------------------------------------------------------- /part-4/ecommerce/inventory/tests/test_db_fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-4/ecommerce/inventory/tests/test_db_fixtures.py -------------------------------------------------------------------------------- /part-4/ecommerce/inventory/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /part-4/ecommerce/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-4/ecommerce/settings.py -------------------------------------------------------------------------------- /part-4/ecommerce/tests/factories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-4/ecommerce/tests/factories.py -------------------------------------------------------------------------------- /part-4/ecommerce/tests/fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-4/ecommerce/tests/fixtures.py -------------------------------------------------------------------------------- /part-4/ecommerce/tests/selenium.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-4/ecommerce/tests/selenium.py -------------------------------------------------------------------------------- /part-4/ecommerce/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-4/ecommerce/urls.py -------------------------------------------------------------------------------- /part-4/ecommerce/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-4/ecommerce/wsgi.py -------------------------------------------------------------------------------- /part-4/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-4/manage.py -------------------------------------------------------------------------------- /part-4/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-4/pytest.ini -------------------------------------------------------------------------------- /part-4/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-4/requirements.txt -------------------------------------------------------------------------------- /part-5/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-5/.DS_Store -------------------------------------------------------------------------------- /part-5/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-5/conftest.py -------------------------------------------------------------------------------- /part-5/doc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-5/doc.md -------------------------------------------------------------------------------- /part-5/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-5/docker-compose.yml -------------------------------------------------------------------------------- /part-5/ecommerce/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-5/ecommerce/.DS_Store -------------------------------------------------------------------------------- /part-5/ecommerce/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /part-5/ecommerce/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-5/ecommerce/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /part-5/ecommerce/__pycache__/settings.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-5/ecommerce/__pycache__/settings.cpython-39.pyc -------------------------------------------------------------------------------- /part-5/ecommerce/__pycache__/urls.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-5/ecommerce/__pycache__/urls.cpython-39.pyc -------------------------------------------------------------------------------- /part-5/ecommerce/__pycache__/wsgi.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-5/ecommerce/__pycache__/wsgi.cpython-39.pyc -------------------------------------------------------------------------------- /part-5/ecommerce/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-5/ecommerce/asgi.py -------------------------------------------------------------------------------- /part-5/ecommerce/dashboard/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-5/ecommerce/dashboard/.DS_Store -------------------------------------------------------------------------------- /part-5/ecommerce/dashboard/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /part-5/ecommerce/dashboard/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-5/ecommerce/dashboard/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /part-5/ecommerce/dashboard/__pycache__/admin.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-5/ecommerce/dashboard/__pycache__/admin.cpython-39.pyc -------------------------------------------------------------------------------- /part-5/ecommerce/dashboard/__pycache__/apps.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-5/ecommerce/dashboard/__pycache__/apps.cpython-39.pyc -------------------------------------------------------------------------------- /part-5/ecommerce/dashboard/__pycache__/models.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-5/ecommerce/dashboard/__pycache__/models.cpython-39.pyc -------------------------------------------------------------------------------- /part-5/ecommerce/dashboard/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-5/ecommerce/dashboard/admin.py -------------------------------------------------------------------------------- /part-5/ecommerce/dashboard/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-5/ecommerce/dashboard/apps.py -------------------------------------------------------------------------------- /part-5/ecommerce/dashboard/fixtures/db_admin_fixture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-5/ecommerce/dashboard/fixtures/db_admin_fixture.json -------------------------------------------------------------------------------- /part-5/ecommerce/dashboard/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /part-5/ecommerce/dashboard/migrations/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-5/ecommerce/dashboard/migrations/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /part-5/ecommerce/dashboard/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-5/ecommerce/dashboard/models.py -------------------------------------------------------------------------------- /part-5/ecommerce/dashboard/tests/test_selenium_dashboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-5/ecommerce/dashboard/tests/test_selenium_dashboard.py -------------------------------------------------------------------------------- /part-5/ecommerce/dashboard/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /part-5/ecommerce/demo/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-5/ecommerce/demo/.DS_Store -------------------------------------------------------------------------------- /part-5/ecommerce/demo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /part-5/ecommerce/demo/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-5/ecommerce/demo/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /part-5/ecommerce/demo/__pycache__/apps.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-5/ecommerce/demo/__pycache__/apps.cpython-39.pyc -------------------------------------------------------------------------------- /part-5/ecommerce/demo/__pycache__/urls.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-5/ecommerce/demo/__pycache__/urls.cpython-39.pyc -------------------------------------------------------------------------------- /part-5/ecommerce/demo/__pycache__/views.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-5/ecommerce/demo/__pycache__/views.cpython-39.pyc -------------------------------------------------------------------------------- /part-5/ecommerce/demo/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-5/ecommerce/demo/apps.py -------------------------------------------------------------------------------- /part-5/ecommerce/demo/management/commands/__pycache__/load-fixtures.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-5/ecommerce/demo/management/commands/__pycache__/load-fixtures.cpython-39.pyc -------------------------------------------------------------------------------- /part-5/ecommerce/demo/management/commands/load-fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-5/ecommerce/demo/management/commands/load-fixtures.py -------------------------------------------------------------------------------- /part-5/ecommerce/demo/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /part-5/ecommerce/demo/migrations/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-5/ecommerce/demo/migrations/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /part-5/ecommerce/demo/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-5/ecommerce/demo/templates/base.html -------------------------------------------------------------------------------- /part-5/ecommerce/demo/templates/categories.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-5/ecommerce/demo/templates/categories.html -------------------------------------------------------------------------------- /part-5/ecommerce/demo/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-5/ecommerce/demo/templates/index.html -------------------------------------------------------------------------------- /part-5/ecommerce/demo/templates/product_by_category.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-5/ecommerce/demo/templates/product_by_category.html -------------------------------------------------------------------------------- /part-5/ecommerce/demo/templates/product_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-5/ecommerce/demo/templates/product_detail.html -------------------------------------------------------------------------------- /part-5/ecommerce/demo/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-5/ecommerce/demo/urls.py -------------------------------------------------------------------------------- /part-5/ecommerce/demo/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-5/ecommerce/demo/views.py -------------------------------------------------------------------------------- /part-5/ecommerce/drf/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /part-5/ecommerce/drf/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-5/ecommerce/drf/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /part-5/ecommerce/drf/__pycache__/admin.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-5/ecommerce/drf/__pycache__/admin.cpython-39.pyc -------------------------------------------------------------------------------- /part-5/ecommerce/drf/__pycache__/apps.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-5/ecommerce/drf/__pycache__/apps.cpython-39.pyc -------------------------------------------------------------------------------- /part-5/ecommerce/drf/__pycache__/models.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-5/ecommerce/drf/__pycache__/models.cpython-39.pyc -------------------------------------------------------------------------------- /part-5/ecommerce/drf/__pycache__/serializer.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-5/ecommerce/drf/__pycache__/serializer.cpython-39.pyc -------------------------------------------------------------------------------- /part-5/ecommerce/drf/__pycache__/views.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-5/ecommerce/drf/__pycache__/views.cpython-39.pyc -------------------------------------------------------------------------------- /part-5/ecommerce/drf/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-5/ecommerce/drf/apps.py -------------------------------------------------------------------------------- /part-5/ecommerce/drf/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /part-5/ecommerce/drf/migrations/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-5/ecommerce/drf/migrations/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /part-5/ecommerce/drf/serializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-5/ecommerce/drf/serializer.py -------------------------------------------------------------------------------- /part-5/ecommerce/drf/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-5/ecommerce/drf/views.py -------------------------------------------------------------------------------- /part-5/ecommerce/inventory/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-5/ecommerce/inventory/.DS_Store -------------------------------------------------------------------------------- /part-5/ecommerce/inventory/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /part-5/ecommerce/inventory/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-5/ecommerce/inventory/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /part-5/ecommerce/inventory/__pycache__/admin.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-5/ecommerce/inventory/__pycache__/admin.cpython-39.pyc -------------------------------------------------------------------------------- /part-5/ecommerce/inventory/__pycache__/apps.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-5/ecommerce/inventory/__pycache__/apps.cpython-39.pyc -------------------------------------------------------------------------------- /part-5/ecommerce/inventory/__pycache__/documents.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-5/ecommerce/inventory/__pycache__/documents.cpython-39.pyc -------------------------------------------------------------------------------- /part-5/ecommerce/inventory/__pycache__/models.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-5/ecommerce/inventory/__pycache__/models.cpython-39.pyc -------------------------------------------------------------------------------- /part-5/ecommerce/inventory/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-5/ecommerce/inventory/apps.py -------------------------------------------------------------------------------- /part-5/ecommerce/inventory/migrations/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-5/ecommerce/inventory/migrations/.DS_Store -------------------------------------------------------------------------------- /part-5/ecommerce/inventory/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /part-5/ecommerce/inventory/migrations/__pycache__/0001_initial.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-5/ecommerce/inventory/migrations/__pycache__/0001_initial.cpython-39.pyc -------------------------------------------------------------------------------- /part-5/ecommerce/inventory/migrations/__pycache__/0002_rename_image_media_img_url.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-5/ecommerce/inventory/migrations/__pycache__/0002_rename_image_media_img_url.cpython-39.pyc -------------------------------------------------------------------------------- /part-5/ecommerce/inventory/migrations/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-5/ecommerce/inventory/migrations/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /part-5/ecommerce/inventory/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-5/ecommerce/inventory/models.py -------------------------------------------------------------------------------- /part-5/ecommerce/inventory/tests/test_db_fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-5/ecommerce/inventory/tests/test_db_fixtures.py -------------------------------------------------------------------------------- /part-5/ecommerce/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-5/ecommerce/settings.py -------------------------------------------------------------------------------- /part-5/ecommerce/tests/factories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-5/ecommerce/tests/factories.py -------------------------------------------------------------------------------- /part-5/ecommerce/tests/fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-5/ecommerce/tests/fixtures.py -------------------------------------------------------------------------------- /part-5/ecommerce/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-5/ecommerce/urls.py -------------------------------------------------------------------------------- /part-5/ecommerce/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-5/ecommerce/wsgi.py -------------------------------------------------------------------------------- /part-5/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-5/manage.py -------------------------------------------------------------------------------- /part-5/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-5/pytest.ini -------------------------------------------------------------------------------- /part-5/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-5/requirements.txt -------------------------------------------------------------------------------- /part-6/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-6/.DS_Store -------------------------------------------------------------------------------- /part-6/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-6/conftest.py -------------------------------------------------------------------------------- /part-6/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-6/docker-compose.yml -------------------------------------------------------------------------------- /part-6/ecommerce/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-6/ecommerce/.DS_Store -------------------------------------------------------------------------------- /part-6/ecommerce/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /part-6/ecommerce/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-6/ecommerce/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /part-6/ecommerce/__pycache__/settings.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-6/ecommerce/__pycache__/settings.cpython-39.pyc -------------------------------------------------------------------------------- /part-6/ecommerce/__pycache__/urls.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-6/ecommerce/__pycache__/urls.cpython-39.pyc -------------------------------------------------------------------------------- /part-6/ecommerce/__pycache__/wsgi.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-6/ecommerce/__pycache__/wsgi.cpython-39.pyc -------------------------------------------------------------------------------- /part-6/ecommerce/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-6/ecommerce/asgi.py -------------------------------------------------------------------------------- /part-6/ecommerce/dashboard/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-6/ecommerce/dashboard/.DS_Store -------------------------------------------------------------------------------- /part-6/ecommerce/dashboard/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /part-6/ecommerce/dashboard/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-6/ecommerce/dashboard/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /part-6/ecommerce/dashboard/__pycache__/admin.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-6/ecommerce/dashboard/__pycache__/admin.cpython-39.pyc -------------------------------------------------------------------------------- /part-6/ecommerce/dashboard/__pycache__/apps.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-6/ecommerce/dashboard/__pycache__/apps.cpython-39.pyc -------------------------------------------------------------------------------- /part-6/ecommerce/dashboard/__pycache__/models.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-6/ecommerce/dashboard/__pycache__/models.cpython-39.pyc -------------------------------------------------------------------------------- /part-6/ecommerce/dashboard/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-6/ecommerce/dashboard/admin.py -------------------------------------------------------------------------------- /part-6/ecommerce/dashboard/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-6/ecommerce/dashboard/apps.py -------------------------------------------------------------------------------- /part-6/ecommerce/dashboard/fixtures/db_admin_fixture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-6/ecommerce/dashboard/fixtures/db_admin_fixture.json -------------------------------------------------------------------------------- /part-6/ecommerce/dashboard/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /part-6/ecommerce/dashboard/migrations/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-6/ecommerce/dashboard/migrations/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /part-6/ecommerce/dashboard/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-6/ecommerce/dashboard/models.py -------------------------------------------------------------------------------- /part-6/ecommerce/dashboard/tests/test_selenium_dashboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-6/ecommerce/dashboard/tests/test_selenium_dashboard.py -------------------------------------------------------------------------------- /part-6/ecommerce/dashboard/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /part-6/ecommerce/demo/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-6/ecommerce/demo/.DS_Store -------------------------------------------------------------------------------- /part-6/ecommerce/demo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /part-6/ecommerce/demo/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-6/ecommerce/demo/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /part-6/ecommerce/demo/__pycache__/apps.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-6/ecommerce/demo/__pycache__/apps.cpython-39.pyc -------------------------------------------------------------------------------- /part-6/ecommerce/demo/__pycache__/urls.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-6/ecommerce/demo/__pycache__/urls.cpython-39.pyc -------------------------------------------------------------------------------- /part-6/ecommerce/demo/__pycache__/views.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-6/ecommerce/demo/__pycache__/views.cpython-39.pyc -------------------------------------------------------------------------------- /part-6/ecommerce/demo/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-6/ecommerce/demo/apps.py -------------------------------------------------------------------------------- /part-6/ecommerce/demo/management/commands/__pycache__/load-fixtures.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-6/ecommerce/demo/management/commands/__pycache__/load-fixtures.cpython-39.pyc -------------------------------------------------------------------------------- /part-6/ecommerce/demo/management/commands/load-fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-6/ecommerce/demo/management/commands/load-fixtures.py -------------------------------------------------------------------------------- /part-6/ecommerce/demo/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /part-6/ecommerce/demo/migrations/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-6/ecommerce/demo/migrations/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /part-6/ecommerce/demo/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-6/ecommerce/demo/templates/base.html -------------------------------------------------------------------------------- /part-6/ecommerce/demo/templates/categories.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-6/ecommerce/demo/templates/categories.html -------------------------------------------------------------------------------- /part-6/ecommerce/demo/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-6/ecommerce/demo/templates/index.html -------------------------------------------------------------------------------- /part-6/ecommerce/demo/templates/product_by_category.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-6/ecommerce/demo/templates/product_by_category.html -------------------------------------------------------------------------------- /part-6/ecommerce/demo/templates/product_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-6/ecommerce/demo/templates/product_detail.html -------------------------------------------------------------------------------- /part-6/ecommerce/demo/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-6/ecommerce/demo/urls.py -------------------------------------------------------------------------------- /part-6/ecommerce/demo/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-6/ecommerce/demo/views.py -------------------------------------------------------------------------------- /part-6/ecommerce/drf/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /part-6/ecommerce/drf/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-6/ecommerce/drf/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /part-6/ecommerce/drf/__pycache__/admin.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-6/ecommerce/drf/__pycache__/admin.cpython-39.pyc -------------------------------------------------------------------------------- /part-6/ecommerce/drf/__pycache__/apps.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-6/ecommerce/drf/__pycache__/apps.cpython-39.pyc -------------------------------------------------------------------------------- /part-6/ecommerce/drf/__pycache__/models.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-6/ecommerce/drf/__pycache__/models.cpython-39.pyc -------------------------------------------------------------------------------- /part-6/ecommerce/drf/__pycache__/serializer.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-6/ecommerce/drf/__pycache__/serializer.cpython-39.pyc -------------------------------------------------------------------------------- /part-6/ecommerce/drf/__pycache__/views.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-6/ecommerce/drf/__pycache__/views.cpython-39.pyc -------------------------------------------------------------------------------- /part-6/ecommerce/drf/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-6/ecommerce/drf/apps.py -------------------------------------------------------------------------------- /part-6/ecommerce/drf/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /part-6/ecommerce/drf/migrations/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-6/ecommerce/drf/migrations/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /part-6/ecommerce/drf/serializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-6/ecommerce/drf/serializer.py -------------------------------------------------------------------------------- /part-6/ecommerce/drf/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-6/ecommerce/drf/views.py -------------------------------------------------------------------------------- /part-6/ecommerce/inventory/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-6/ecommerce/inventory/.DS_Store -------------------------------------------------------------------------------- /part-6/ecommerce/inventory/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /part-6/ecommerce/inventory/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-6/ecommerce/inventory/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /part-6/ecommerce/inventory/__pycache__/admin.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-6/ecommerce/inventory/__pycache__/admin.cpython-39.pyc -------------------------------------------------------------------------------- /part-6/ecommerce/inventory/__pycache__/apps.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-6/ecommerce/inventory/__pycache__/apps.cpython-39.pyc -------------------------------------------------------------------------------- /part-6/ecommerce/inventory/__pycache__/documents.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-6/ecommerce/inventory/__pycache__/documents.cpython-39.pyc -------------------------------------------------------------------------------- /part-6/ecommerce/inventory/__pycache__/models.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-6/ecommerce/inventory/__pycache__/models.cpython-39.pyc -------------------------------------------------------------------------------- /part-6/ecommerce/inventory/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-6/ecommerce/inventory/apps.py -------------------------------------------------------------------------------- /part-6/ecommerce/inventory/migrations/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-6/ecommerce/inventory/migrations/.DS_Store -------------------------------------------------------------------------------- /part-6/ecommerce/inventory/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /part-6/ecommerce/inventory/migrations/__pycache__/0001_initial.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-6/ecommerce/inventory/migrations/__pycache__/0001_initial.cpython-39.pyc -------------------------------------------------------------------------------- /part-6/ecommerce/inventory/migrations/__pycache__/0002_rename_image_media_img_url.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-6/ecommerce/inventory/migrations/__pycache__/0002_rename_image_media_img_url.cpython-39.pyc -------------------------------------------------------------------------------- /part-6/ecommerce/inventory/migrations/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-6/ecommerce/inventory/migrations/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /part-6/ecommerce/inventory/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-6/ecommerce/inventory/models.py -------------------------------------------------------------------------------- /part-6/ecommerce/inventory/tests/test_db_fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-6/ecommerce/inventory/tests/test_db_fixtures.py -------------------------------------------------------------------------------- /part-6/ecommerce/search/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /part-6/ecommerce/search/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-6/ecommerce/search/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /part-6/ecommerce/search/__pycache__/admin.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-6/ecommerce/search/__pycache__/admin.cpython-39.pyc -------------------------------------------------------------------------------- /part-6/ecommerce/search/__pycache__/apps.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-6/ecommerce/search/__pycache__/apps.cpython-39.pyc -------------------------------------------------------------------------------- /part-6/ecommerce/search/__pycache__/documents.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-6/ecommerce/search/__pycache__/documents.cpython-39.pyc -------------------------------------------------------------------------------- /part-6/ecommerce/search/__pycache__/models.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-6/ecommerce/search/__pycache__/models.cpython-39.pyc -------------------------------------------------------------------------------- /part-6/ecommerce/search/__pycache__/views.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-6/ecommerce/search/__pycache__/views.cpython-39.pyc -------------------------------------------------------------------------------- /part-6/ecommerce/search/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-6/ecommerce/search/admin.py -------------------------------------------------------------------------------- /part-6/ecommerce/search/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-6/ecommerce/search/apps.py -------------------------------------------------------------------------------- /part-6/ecommerce/search/documents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-6/ecommerce/search/documents.py -------------------------------------------------------------------------------- /part-6/ecommerce/search/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /part-6/ecommerce/search/migrations/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-6/ecommerce/search/migrations/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /part-6/ecommerce/search/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-6/ecommerce/search/models.py -------------------------------------------------------------------------------- /part-6/ecommerce/search/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-6/ecommerce/search/tests.py -------------------------------------------------------------------------------- /part-6/ecommerce/search/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-6/ecommerce/search/views.py -------------------------------------------------------------------------------- /part-6/ecommerce/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-6/ecommerce/settings.py -------------------------------------------------------------------------------- /part-6/ecommerce/tests/factories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-6/ecommerce/tests/factories.py -------------------------------------------------------------------------------- /part-6/ecommerce/tests/fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-6/ecommerce/tests/fixtures.py -------------------------------------------------------------------------------- /part-6/ecommerce/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-6/ecommerce/urls.py -------------------------------------------------------------------------------- /part-6/ecommerce/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-6/ecommerce/wsgi.py -------------------------------------------------------------------------------- /part-6/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-6/manage.py -------------------------------------------------------------------------------- /part-6/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-6/pytest.ini -------------------------------------------------------------------------------- /part-6/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-6/requirements.txt -------------------------------------------------------------------------------- /part-7/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-7/conftest.py -------------------------------------------------------------------------------- /part-7/dev-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-7/dev-requirements.txt -------------------------------------------------------------------------------- /part-7/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-7/docker-compose.yml -------------------------------------------------------------------------------- /part-7/ecommerce/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /part-7/ecommerce/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-7/ecommerce/asgi.py -------------------------------------------------------------------------------- /part-7/ecommerce/demo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /part-7/ecommerce/demo/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-7/ecommerce/demo/admin.py -------------------------------------------------------------------------------- /part-7/ecommerce/demo/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-7/ecommerce/demo/apps.py -------------------------------------------------------------------------------- /part-7/ecommerce/demo/fixtures/db_admin_fixture_50.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-7/ecommerce/demo/fixtures/db_admin_fixture_50.json -------------------------------------------------------------------------------- /part-7/ecommerce/demo/fixtures/db_brand_fixture_50.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-7/ecommerce/demo/fixtures/db_brand_fixture_50.json -------------------------------------------------------------------------------- /part-7/ecommerce/demo/fixtures/db_category_fixture_50.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-7/ecommerce/demo/fixtures/db_category_fixture_50.json -------------------------------------------------------------------------------- /part-7/ecommerce/demo/fixtures/db_media_fixture_50.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-7/ecommerce/demo/fixtures/db_media_fixture_50.json -------------------------------------------------------------------------------- /part-7/ecommerce/demo/fixtures/db_product_attribute_fixture_50.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-7/ecommerce/demo/fixtures/db_product_attribute_fixture_50.json -------------------------------------------------------------------------------- /part-7/ecommerce/demo/fixtures/db_product_attribute_value_fixture_50.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-7/ecommerce/demo/fixtures/db_product_attribute_value_fixture_50.json -------------------------------------------------------------------------------- /part-7/ecommerce/demo/fixtures/db_product_attribute_values_fixture_50.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-7/ecommerce/demo/fixtures/db_product_attribute_values_fixture_50.json -------------------------------------------------------------------------------- /part-7/ecommerce/demo/fixtures/db_product_fixture_50.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-7/ecommerce/demo/fixtures/db_product_fixture_50.json -------------------------------------------------------------------------------- /part-7/ecommerce/demo/fixtures/db_product_inventory_fixture_50.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-7/ecommerce/demo/fixtures/db_product_inventory_fixture_50.json -------------------------------------------------------------------------------- /part-7/ecommerce/demo/fixtures/db_product_type_attribute_fixture_50.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-7/ecommerce/demo/fixtures/db_product_type_attribute_fixture_50.json -------------------------------------------------------------------------------- /part-7/ecommerce/demo/fixtures/db_stock_fixture_50.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-7/ecommerce/demo/fixtures/db_stock_fixture_50.json -------------------------------------------------------------------------------- /part-7/ecommerce/demo/fixtures/db_type_fixture_50.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-7/ecommerce/demo/fixtures/db_type_fixture_50.json -------------------------------------------------------------------------------- /part-7/ecommerce/demo/management/commands/demo-docker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-7/ecommerce/demo/management/commands/demo-docker.py -------------------------------------------------------------------------------- /part-7/ecommerce/demo/management/commands/demo-fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-7/ecommerce/demo/management/commands/demo-fixtures.py -------------------------------------------------------------------------------- /part-7/ecommerce/demo/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /part-7/ecommerce/demo/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-7/ecommerce/demo/models.py -------------------------------------------------------------------------------- /part-7/ecommerce/demo/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-7/ecommerce/demo/tests.py -------------------------------------------------------------------------------- /part-7/ecommerce/demo/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /part-7/ecommerce/drf/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /part-7/ecommerce/drf/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-7/ecommerce/drf/apps.py -------------------------------------------------------------------------------- /part-7/ecommerce/drf/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /part-7/ecommerce/drf/serializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-7/ecommerce/drf/serializer.py -------------------------------------------------------------------------------- /part-7/ecommerce/drf/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /part-7/ecommerce/drf/tests/test_category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-7/ecommerce/drf/tests/test_category.py -------------------------------------------------------------------------------- /part-7/ecommerce/drf/tests/test_product.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-7/ecommerce/drf/tests/test_product.py -------------------------------------------------------------------------------- /part-7/ecommerce/drf/tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-7/ecommerce/drf/tests/utils.py -------------------------------------------------------------------------------- /part-7/ecommerce/drf/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-7/ecommerce/drf/views.py -------------------------------------------------------------------------------- /part-7/ecommerce/inventory/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /part-7/ecommerce/inventory/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-7/ecommerce/inventory/admin.py -------------------------------------------------------------------------------- /part-7/ecommerce/inventory/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-7/ecommerce/inventory/apps.py -------------------------------------------------------------------------------- /part-7/ecommerce/inventory/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /part-7/ecommerce/inventory/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-7/ecommerce/inventory/models.py -------------------------------------------------------------------------------- /part-7/ecommerce/inventory/tests/test_category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-7/ecommerce/inventory/tests/test_category.py -------------------------------------------------------------------------------- /part-7/ecommerce/inventory/tests/test_products.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-7/ecommerce/inventory/tests/test_products.py -------------------------------------------------------------------------------- /part-7/ecommerce/inventory/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /part-7/ecommerce/search/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /part-7/ecommerce/search/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-7/ecommerce/search/admin.py -------------------------------------------------------------------------------- /part-7/ecommerce/search/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-7/ecommerce/search/apps.py -------------------------------------------------------------------------------- /part-7/ecommerce/search/documents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-7/ecommerce/search/documents.py -------------------------------------------------------------------------------- /part-7/ecommerce/search/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /part-7/ecommerce/search/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-7/ecommerce/search/models.py -------------------------------------------------------------------------------- /part-7/ecommerce/search/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-7/ecommerce/search/tests.py -------------------------------------------------------------------------------- /part-7/ecommerce/search/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-7/ecommerce/search/views.py -------------------------------------------------------------------------------- /part-7/ecommerce/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-7/ecommerce/settings.py -------------------------------------------------------------------------------- /part-7/ecommerce/tests/api_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-7/ecommerce/tests/api_client.py -------------------------------------------------------------------------------- /part-7/ecommerce/tests/inventory_fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-7/ecommerce/tests/inventory_fixtures.py -------------------------------------------------------------------------------- /part-7/ecommerce/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-7/ecommerce/urls.py -------------------------------------------------------------------------------- /part-7/ecommerce/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-7/ecommerce/wsgi.py -------------------------------------------------------------------------------- /part-7/elasticsearch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-7/elasticsearch.yml -------------------------------------------------------------------------------- /part-7/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-7/manage.py -------------------------------------------------------------------------------- /part-7/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-7/pytest.ini -------------------------------------------------------------------------------- /part-7/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-7/readme.md -------------------------------------------------------------------------------- /part-8-django-ninja-example/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-8-django-ninja-example/conftest.py -------------------------------------------------------------------------------- /part-8-django-ninja-example/dev-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-8-django-ninja-example/dev-requirements.txt -------------------------------------------------------------------------------- /part-8-django-ninja-example/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-8-django-ninja-example/docker-compose.yml -------------------------------------------------------------------------------- /part-8-django-ninja-example/ecommerce/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /part-8-django-ninja-example/ecommerce/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-8-django-ninja-example/ecommerce/asgi.py -------------------------------------------------------------------------------- /part-8-django-ninja-example/ecommerce/demo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /part-8-django-ninja-example/ecommerce/demo/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-8-django-ninja-example/ecommerce/demo/admin.py -------------------------------------------------------------------------------- /part-8-django-ninja-example/ecommerce/demo/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-8-django-ninja-example/ecommerce/demo/apps.py -------------------------------------------------------------------------------- /part-8-django-ninja-example/ecommerce/demo/management/commands/demo-docker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-8-django-ninja-example/ecommerce/demo/management/commands/demo-docker.py -------------------------------------------------------------------------------- /part-8-django-ninja-example/ecommerce/demo/management/commands/demo-fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-8-django-ninja-example/ecommerce/demo/management/commands/demo-fixtures.py -------------------------------------------------------------------------------- /part-8-django-ninja-example/ecommerce/demo/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /part-8-django-ninja-example/ecommerce/demo/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-8-django-ninja-example/ecommerce/demo/models.py -------------------------------------------------------------------------------- /part-8-django-ninja-example/ecommerce/demo/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-8-django-ninja-example/ecommerce/demo/tests.py -------------------------------------------------------------------------------- /part-8-django-ninja-example/ecommerce/demo/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /part-8-django-ninja-example/ecommerce/dninja/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /part-8-django-ninja-example/ecommerce/dninja/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-8-django-ninja-example/ecommerce/dninja/api.py -------------------------------------------------------------------------------- /part-8-django-ninja-example/ecommerce/dninja/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-8-django-ninja-example/ecommerce/dninja/schema.py -------------------------------------------------------------------------------- /part-8-django-ninja-example/ecommerce/dninja/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /part-8-django-ninja-example/ecommerce/dninja/tests/test_category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-8-django-ninja-example/ecommerce/dninja/tests/test_category.py -------------------------------------------------------------------------------- /part-8-django-ninja-example/ecommerce/dninja/tests/test_product.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-8-django-ninja-example/ecommerce/dninja/tests/test_product.py -------------------------------------------------------------------------------- /part-8-django-ninja-example/ecommerce/dninja/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-8-django-ninja-example/ecommerce/dninja/urls.py -------------------------------------------------------------------------------- /part-8-django-ninja-example/ecommerce/drf/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /part-8-django-ninja-example/ecommerce/drf/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-8-django-ninja-example/ecommerce/drf/apps.py -------------------------------------------------------------------------------- /part-8-django-ninja-example/ecommerce/drf/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /part-8-django-ninja-example/ecommerce/drf/serializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-8-django-ninja-example/ecommerce/drf/serializer.py -------------------------------------------------------------------------------- /part-8-django-ninja-example/ecommerce/drf/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /part-8-django-ninja-example/ecommerce/drf/tests/test_category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-8-django-ninja-example/ecommerce/drf/tests/test_category.py -------------------------------------------------------------------------------- /part-8-django-ninja-example/ecommerce/drf/tests/test_product.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-8-django-ninja-example/ecommerce/drf/tests/test_product.py -------------------------------------------------------------------------------- /part-8-django-ninja-example/ecommerce/drf/tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-8-django-ninja-example/ecommerce/drf/tests/utils.py -------------------------------------------------------------------------------- /part-8-django-ninja-example/ecommerce/drf/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-8-django-ninja-example/ecommerce/drf/views.py -------------------------------------------------------------------------------- /part-8-django-ninja-example/ecommerce/inventory/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /part-8-django-ninja-example/ecommerce/inventory/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-8-django-ninja-example/ecommerce/inventory/admin.py -------------------------------------------------------------------------------- /part-8-django-ninja-example/ecommerce/inventory/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-8-django-ninja-example/ecommerce/inventory/apps.py -------------------------------------------------------------------------------- /part-8-django-ninja-example/ecommerce/inventory/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /part-8-django-ninja-example/ecommerce/inventory/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-8-django-ninja-example/ecommerce/inventory/models.py -------------------------------------------------------------------------------- /part-8-django-ninja-example/ecommerce/inventory/tests/test_category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-8-django-ninja-example/ecommerce/inventory/tests/test_category.py -------------------------------------------------------------------------------- /part-8-django-ninja-example/ecommerce/inventory/tests/test_products.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-8-django-ninja-example/ecommerce/inventory/tests/test_products.py -------------------------------------------------------------------------------- /part-8-django-ninja-example/ecommerce/inventory/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /part-8-django-ninja-example/ecommerce/search/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /part-8-django-ninja-example/ecommerce/search/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-8-django-ninja-example/ecommerce/search/admin.py -------------------------------------------------------------------------------- /part-8-django-ninja-example/ecommerce/search/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-8-django-ninja-example/ecommerce/search/apps.py -------------------------------------------------------------------------------- /part-8-django-ninja-example/ecommerce/search/documents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-8-django-ninja-example/ecommerce/search/documents.py -------------------------------------------------------------------------------- /part-8-django-ninja-example/ecommerce/search/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /part-8-django-ninja-example/ecommerce/search/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-8-django-ninja-example/ecommerce/search/models.py -------------------------------------------------------------------------------- /part-8-django-ninja-example/ecommerce/search/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-8-django-ninja-example/ecommerce/search/tests.py -------------------------------------------------------------------------------- /part-8-django-ninja-example/ecommerce/search/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-8-django-ninja-example/ecommerce/search/views.py -------------------------------------------------------------------------------- /part-8-django-ninja-example/ecommerce/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-8-django-ninja-example/ecommerce/settings.py -------------------------------------------------------------------------------- /part-8-django-ninja-example/ecommerce/tests/api_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-8-django-ninja-example/ecommerce/tests/api_client.py -------------------------------------------------------------------------------- /part-8-django-ninja-example/ecommerce/tests/c_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-8-django-ninja-example/ecommerce/tests/c_client.py -------------------------------------------------------------------------------- /part-8-django-ninja-example/ecommerce/tests/inventory_fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-8-django-ninja-example/ecommerce/tests/inventory_fixtures.py -------------------------------------------------------------------------------- /part-8-django-ninja-example/ecommerce/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-8-django-ninja-example/ecommerce/urls.py -------------------------------------------------------------------------------- /part-8-django-ninja-example/ecommerce/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-8-django-ninja-example/ecommerce/wsgi.py -------------------------------------------------------------------------------- /part-8-django-ninja-example/elasticsearch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-8-django-ninja-example/elasticsearch.yml -------------------------------------------------------------------------------- /part-8-django-ninja-example/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-8-django-ninja-example/manage.py -------------------------------------------------------------------------------- /part-8-django-ninja-example/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-8-django-ninja-example/pytest.ini -------------------------------------------------------------------------------- /part-8-django-ninja-example/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-8-django-ninja-example/readme.md -------------------------------------------------------------------------------- /part-9/AfterTestingIssues.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-9/AfterTestingIssues.zip -------------------------------------------------------------------------------- /part-9/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-9/Dockerfile -------------------------------------------------------------------------------- /part-9/celerybeat-schedule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-9/celerybeat-schedule -------------------------------------------------------------------------------- /part-9/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-9/conftest.py -------------------------------------------------------------------------------- /part-9/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-9/docker-compose.yml -------------------------------------------------------------------------------- /part-9/ecommerce/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-9/ecommerce/__init__.py -------------------------------------------------------------------------------- /part-9/ecommerce/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-9/ecommerce/asgi.py -------------------------------------------------------------------------------- /part-9/ecommerce/celery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-9/ecommerce/celery.py -------------------------------------------------------------------------------- /part-9/ecommerce/demo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /part-9/ecommerce/demo/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-9/ecommerce/demo/admin.py -------------------------------------------------------------------------------- /part-9/ecommerce/demo/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-9/ecommerce/demo/apps.py -------------------------------------------------------------------------------- /part-9/ecommerce/demo/fixtures/db_admin_fixture_50.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-9/ecommerce/demo/fixtures/db_admin_fixture_50.json -------------------------------------------------------------------------------- /part-9/ecommerce/demo/fixtures/db_brand_fixture_50.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-9/ecommerce/demo/fixtures/db_brand_fixture_50.json -------------------------------------------------------------------------------- /part-9/ecommerce/demo/fixtures/db_category_fixture_50.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-9/ecommerce/demo/fixtures/db_category_fixture_50.json -------------------------------------------------------------------------------- /part-9/ecommerce/demo/fixtures/db_media_fixture_50.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-9/ecommerce/demo/fixtures/db_media_fixture_50.json -------------------------------------------------------------------------------- /part-9/ecommerce/demo/fixtures/db_product_attribute_fixture_50.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-9/ecommerce/demo/fixtures/db_product_attribute_fixture_50.json -------------------------------------------------------------------------------- /part-9/ecommerce/demo/fixtures/db_product_attribute_value_fixture_50.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-9/ecommerce/demo/fixtures/db_product_attribute_value_fixture_50.json -------------------------------------------------------------------------------- /part-9/ecommerce/demo/fixtures/db_product_attribute_values_fixture_50.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-9/ecommerce/demo/fixtures/db_product_attribute_values_fixture_50.json -------------------------------------------------------------------------------- /part-9/ecommerce/demo/fixtures/db_product_fixture_50.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-9/ecommerce/demo/fixtures/db_product_fixture_50.json -------------------------------------------------------------------------------- /part-9/ecommerce/demo/fixtures/db_product_inventory_fixture_50.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-9/ecommerce/demo/fixtures/db_product_inventory_fixture_50.json -------------------------------------------------------------------------------- /part-9/ecommerce/demo/fixtures/db_product_type_attribute_fixture_50.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-9/ecommerce/demo/fixtures/db_product_type_attribute_fixture_50.json -------------------------------------------------------------------------------- /part-9/ecommerce/demo/fixtures/db_stock_fixture_50.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-9/ecommerce/demo/fixtures/db_stock_fixture_50.json -------------------------------------------------------------------------------- /part-9/ecommerce/demo/fixtures/db_type_fixture_50.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-9/ecommerce/demo/fixtures/db_type_fixture_50.json -------------------------------------------------------------------------------- /part-9/ecommerce/demo/management/commands/demo-docker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-9/ecommerce/demo/management/commands/demo-docker.py -------------------------------------------------------------------------------- /part-9/ecommerce/demo/management/commands/demo-fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-9/ecommerce/demo/management/commands/demo-fixtures.py -------------------------------------------------------------------------------- /part-9/ecommerce/demo/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /part-9/ecommerce/demo/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-9/ecommerce/demo/models.py -------------------------------------------------------------------------------- /part-9/ecommerce/demo/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-9/ecommerce/demo/tests.py -------------------------------------------------------------------------------- /part-9/ecommerce/demo/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /part-9/ecommerce/drf/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /part-9/ecommerce/drf/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-9/ecommerce/drf/apps.py -------------------------------------------------------------------------------- /part-9/ecommerce/drf/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /part-9/ecommerce/drf/serializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-9/ecommerce/drf/serializer.py -------------------------------------------------------------------------------- /part-9/ecommerce/drf/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /part-9/ecommerce/drf/tests/test_category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-9/ecommerce/drf/tests/test_category.py -------------------------------------------------------------------------------- /part-9/ecommerce/drf/tests/test_product.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-9/ecommerce/drf/tests/test_product.py -------------------------------------------------------------------------------- /part-9/ecommerce/drf/tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-9/ecommerce/drf/tests/utils.py -------------------------------------------------------------------------------- /part-9/ecommerce/drf/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-9/ecommerce/drf/views.py -------------------------------------------------------------------------------- /part-9/ecommerce/inventory/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /part-9/ecommerce/inventory/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-9/ecommerce/inventory/admin.py -------------------------------------------------------------------------------- /part-9/ecommerce/inventory/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-9/ecommerce/inventory/apps.py -------------------------------------------------------------------------------- /part-9/ecommerce/inventory/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /part-9/ecommerce/inventory/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-9/ecommerce/inventory/models.py -------------------------------------------------------------------------------- /part-9/ecommerce/inventory/tests/test_category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-9/ecommerce/inventory/tests/test_category.py -------------------------------------------------------------------------------- /part-9/ecommerce/inventory/tests/test_products.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-9/ecommerce/inventory/tests/test_products.py -------------------------------------------------------------------------------- /part-9/ecommerce/inventory/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /part-9/ecommerce/promotion/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /part-9/ecommerce/promotion/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-9/ecommerce/promotion/admin.py -------------------------------------------------------------------------------- /part-9/ecommerce/promotion/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-9/ecommerce/promotion/apps.py -------------------------------------------------------------------------------- /part-9/ecommerce/promotion/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /part-9/ecommerce/promotion/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-9/ecommerce/promotion/models.py -------------------------------------------------------------------------------- /part-9/ecommerce/promotion/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-9/ecommerce/promotion/tasks.py -------------------------------------------------------------------------------- /part-9/ecommerce/promotion/tests/test_promotion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-9/ecommerce/promotion/tests/test_promotion.py -------------------------------------------------------------------------------- /part-9/ecommerce/promotion/tests/test_promotion_management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-9/ecommerce/promotion/tests/test_promotion_management.py -------------------------------------------------------------------------------- /part-9/ecommerce/promotion/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /part-9/ecommerce/search/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /part-9/ecommerce/search/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-9/ecommerce/search/admin.py -------------------------------------------------------------------------------- /part-9/ecommerce/search/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-9/ecommerce/search/apps.py -------------------------------------------------------------------------------- /part-9/ecommerce/search/documents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-9/ecommerce/search/documents.py -------------------------------------------------------------------------------- /part-9/ecommerce/search/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /part-9/ecommerce/search/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-9/ecommerce/search/models.py -------------------------------------------------------------------------------- /part-9/ecommerce/search/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-9/ecommerce/search/tests.py -------------------------------------------------------------------------------- /part-9/ecommerce/search/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-9/ecommerce/search/views.py -------------------------------------------------------------------------------- /part-9/ecommerce/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-9/ecommerce/settings.py -------------------------------------------------------------------------------- /part-9/ecommerce/tests/api_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-9/ecommerce/tests/api_client.py -------------------------------------------------------------------------------- /part-9/ecommerce/tests/inventory_fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-9/ecommerce/tests/inventory_fixtures.py -------------------------------------------------------------------------------- /part-9/ecommerce/tests/promotion_fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-9/ecommerce/tests/promotion_fixtures.py -------------------------------------------------------------------------------- /part-9/ecommerce/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-9/ecommerce/urls.py -------------------------------------------------------------------------------- /part-9/ecommerce/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-9/ecommerce/wsgi.py -------------------------------------------------------------------------------- /part-9/elasticsearch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-9/elasticsearch.yml -------------------------------------------------------------------------------- /part-9/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-9/manage.py -------------------------------------------------------------------------------- /part-9/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-9/pytest.ini -------------------------------------------------------------------------------- /part-9/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-9/readme.md -------------------------------------------------------------------------------- /part-9/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/django-ecommerce-project-v2/HEAD/part-9/requirements.txt --------------------------------------------------------------------------------