├── .env.example ├── .gitignore ├── Makefile ├── README.md ├── app ├── __init__.py ├── admin.py ├── apps.py ├── filters.py ├── manager.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_user_is_staff.py │ ├── 0003_user_is_active.py │ ├── 0004_alter_user_is_staff.py │ ├── 0005_customer_phone.py │ ├── 0006_seller_address_seller_certificate.py │ ├── 0007_remove_customer_phone.py │ ├── 0008_customer_phone_seller_phone.py │ ├── 0009_category_slug.py │ ├── 0010_remove_customer_phone_remove_seller_phone.py │ ├── 0011_alter_customer_user_alter_seller_user.py │ ├── 0012_alter_shop_seller.py │ ├── 0013_alter_productimage_image.py │ └── __init__.py ├── models.py ├── pagination.py ├── permissions.py ├── serializers.py ├── tests.py ├── urls.py └── views.py ├── core ├── __init__.py ├── asgi.py ├── settings.py ├── urls.py └── wsgi.py ├── manage.py ├── media └── products │ ├── nishalda-313550.jpg │ └── reminder.jpg └── requirements.txt /.env.example: -------------------------------------------------------------------------------- 1 | SECRET_KEY= -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulugbekpy/uzum-uz-api/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulugbekpy/uzum-uz-api/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulugbekpy/uzum-uz-api/HEAD/README.md -------------------------------------------------------------------------------- /app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulugbekpy/uzum-uz-api/HEAD/app/admin.py -------------------------------------------------------------------------------- /app/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulugbekpy/uzum-uz-api/HEAD/app/apps.py -------------------------------------------------------------------------------- /app/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulugbekpy/uzum-uz-api/HEAD/app/filters.py -------------------------------------------------------------------------------- /app/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulugbekpy/uzum-uz-api/HEAD/app/manager.py -------------------------------------------------------------------------------- /app/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulugbekpy/uzum-uz-api/HEAD/app/migrations/0001_initial.py -------------------------------------------------------------------------------- /app/migrations/0002_user_is_staff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulugbekpy/uzum-uz-api/HEAD/app/migrations/0002_user_is_staff.py -------------------------------------------------------------------------------- /app/migrations/0003_user_is_active.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulugbekpy/uzum-uz-api/HEAD/app/migrations/0003_user_is_active.py -------------------------------------------------------------------------------- /app/migrations/0004_alter_user_is_staff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulugbekpy/uzum-uz-api/HEAD/app/migrations/0004_alter_user_is_staff.py -------------------------------------------------------------------------------- /app/migrations/0005_customer_phone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulugbekpy/uzum-uz-api/HEAD/app/migrations/0005_customer_phone.py -------------------------------------------------------------------------------- /app/migrations/0006_seller_address_seller_certificate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulugbekpy/uzum-uz-api/HEAD/app/migrations/0006_seller_address_seller_certificate.py -------------------------------------------------------------------------------- /app/migrations/0007_remove_customer_phone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulugbekpy/uzum-uz-api/HEAD/app/migrations/0007_remove_customer_phone.py -------------------------------------------------------------------------------- /app/migrations/0008_customer_phone_seller_phone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulugbekpy/uzum-uz-api/HEAD/app/migrations/0008_customer_phone_seller_phone.py -------------------------------------------------------------------------------- /app/migrations/0009_category_slug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulugbekpy/uzum-uz-api/HEAD/app/migrations/0009_category_slug.py -------------------------------------------------------------------------------- /app/migrations/0010_remove_customer_phone_remove_seller_phone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulugbekpy/uzum-uz-api/HEAD/app/migrations/0010_remove_customer_phone_remove_seller_phone.py -------------------------------------------------------------------------------- /app/migrations/0011_alter_customer_user_alter_seller_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulugbekpy/uzum-uz-api/HEAD/app/migrations/0011_alter_customer_user_alter_seller_user.py -------------------------------------------------------------------------------- /app/migrations/0012_alter_shop_seller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulugbekpy/uzum-uz-api/HEAD/app/migrations/0012_alter_shop_seller.py -------------------------------------------------------------------------------- /app/migrations/0013_alter_productimage_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulugbekpy/uzum-uz-api/HEAD/app/migrations/0013_alter_productimage_image.py -------------------------------------------------------------------------------- /app/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulugbekpy/uzum-uz-api/HEAD/app/models.py -------------------------------------------------------------------------------- /app/pagination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulugbekpy/uzum-uz-api/HEAD/app/pagination.py -------------------------------------------------------------------------------- /app/permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulugbekpy/uzum-uz-api/HEAD/app/permissions.py -------------------------------------------------------------------------------- /app/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulugbekpy/uzum-uz-api/HEAD/app/serializers.py -------------------------------------------------------------------------------- /app/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulugbekpy/uzum-uz-api/HEAD/app/tests.py -------------------------------------------------------------------------------- /app/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulugbekpy/uzum-uz-api/HEAD/app/urls.py -------------------------------------------------------------------------------- /app/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulugbekpy/uzum-uz-api/HEAD/app/views.py -------------------------------------------------------------------------------- /core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulugbekpy/uzum-uz-api/HEAD/core/asgi.py -------------------------------------------------------------------------------- /core/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulugbekpy/uzum-uz-api/HEAD/core/settings.py -------------------------------------------------------------------------------- /core/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulugbekpy/uzum-uz-api/HEAD/core/urls.py -------------------------------------------------------------------------------- /core/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulugbekpy/uzum-uz-api/HEAD/core/wsgi.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulugbekpy/uzum-uz-api/HEAD/manage.py -------------------------------------------------------------------------------- /media/products/nishalda-313550.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulugbekpy/uzum-uz-api/HEAD/media/products/nishalda-313550.jpg -------------------------------------------------------------------------------- /media/products/reminder.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulugbekpy/uzum-uz-api/HEAD/media/products/reminder.jpg -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulugbekpy/uzum-uz-api/HEAD/requirements.txt --------------------------------------------------------------------------------