├── .devcontainer ├── devcontainer.json └── docker-compose.yml ├── .dockerignore ├── .github └── workflows │ ├── django-test.yml │ └── prod.workflow.yml ├── .gitignore ├── .pylintrc ├── .vscode └── launch.json ├── Dockerfile ├── Pipfile ├── Pipfile.lock ├── Procfile ├── README.md ├── TODO.md ├── config ├── __init__.py ├── asgi.py ├── settings.py ├── urls.py └── wsgi.py ├── docker-compose.yml ├── ecommerce ├── __init__.py ├── admin.py ├── apps.py ├── context_processors.py ├── custom_permissions.py ├── decorators.py ├── filters.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_initial.py │ ├── 0003_alter_category_slug_alter_category_title_and_more.py │ ├── 0004_alter_category_slug.py │ ├── 0005_alter_category_slug_alter_product_category.py │ ├── 0006_alter_product_title.py │ ├── 0007_alter_image_image_location.py │ └── __init__.py ├── models.py ├── serializers.py ├── tests.py ├── urls.py └── views.py ├── entrypoint.sh ├── frontend ├── .gitignore ├── README.md ├── package-lock.json ├── package.json ├── postcss.config.js ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt ├── src │ ├── App.js │ ├── assets │ │ └── img │ │ │ ├── .gitkeep │ │ │ └── media │ │ │ ├── 01.jpg │ │ │ ├── 02.jpg │ │ │ ├── 03.jpg │ │ │ ├── 04.jpg │ │ │ ├── 06.jpg │ │ │ ├── background.jpg │ │ │ ├── bolso.webp │ │ │ ├── card1.jpg │ │ │ ├── card2.jpg │ │ │ ├── card3.jpg │ │ │ ├── correo.webp │ │ │ ├── image 52.png │ │ │ ├── img3.jpg │ │ │ ├── logo.png │ │ │ └── mano.jpg │ ├── components │ │ ├── Cart.js │ │ ├── Carusel.js │ │ ├── Footer.js │ │ ├── Header.js │ │ ├── Layout.js │ │ ├── PageNotFound.js │ │ └── Spinner.js │ ├── fonts.css │ ├── hooks │ │ └── .gitkeep │ ├── index.css │ ├── index.js │ ├── pages │ │ ├── About │ │ │ └── About.js │ │ ├── Contact │ │ │ └── Contact.js │ │ ├── Home │ │ │ └── Home.js │ │ ├── Login │ │ │ ├── Login.js │ │ │ └── Logins.css │ │ ├── Product │ │ │ └── Product.js │ │ ├── Products │ │ │ └── Products.js │ │ ├── Profile │ │ │ └── Profile.js │ │ └── ProfileSeller │ │ │ └── ProfileSeller.js │ └── store │ │ ├── index.js │ │ └── slices │ │ ├── category │ │ ├── category.rest │ │ ├── index.js │ │ └── services.js │ │ ├── product │ │ ├── index.js │ │ └── services.js │ │ └── user │ │ ├── index.js │ │ ├── services.js │ │ └── user.rest └── tailwind.config.js ├── local.Dockerfile ├── manage.py ├── payment ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ └── __init__.py ├── models.py ├── tests.py ├── urls.py └── views.py ├── pyproject.toml ├── readme ├── Docker_guide.md ├── Esquema.drawio ├── Guide_Pipenv.md └── Problemas.md ├── requirements-deploy.txt ├── requirements.txt ├── runtime.txt ├── setup.cfg ├── shopping_cart ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── shopping_cart.py ├── tests.py ├── urls.py └── views.py ├── staticfiles └── css │ └── main.css ├── templates ├── base.html ├── cart │ ├── cart.html │ └── images.html ├── categories.html ├── ecommerce │ ├── home.html │ ├── images.html │ ├── product_delete.html │ ├── product_detail.html │ └── product_edit.html ├── footer.html ├── hero.html ├── navbar.html ├── payment │ ├── cancel.html │ ├── payment.html │ └── success.html └── users │ ├── login.html │ ├── panel.html │ ├── register.html │ ├── seller_register.html │ ├── user_panel.html │ └── users_edit.html └── users ├── __init__.py ├── admin.py ├── apps.py ├── decorators.py ├── forms.py ├── migrations ├── 0001_initial.py └── __init__.py ├── models.py ├── permissions.py ├── serializers.py ├── tests.py ├── urls.py └── views.py /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.devcontainer/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/.devcontainer/docker-compose.yml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/workflows/django-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/.github/workflows/django-test.yml -------------------------------------------------------------------------------- /.github/workflows/prod.workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/.github/workflows/prod.workflow.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/.gitignore -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/.pylintrc -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/Dockerfile -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn config.wsgi --log-file - -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/TODO.md -------------------------------------------------------------------------------- /config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/config/asgi.py -------------------------------------------------------------------------------- /config/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/config/settings.py -------------------------------------------------------------------------------- /config/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/config/urls.py -------------------------------------------------------------------------------- /config/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/config/wsgi.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /ecommerce/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ecommerce/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/ecommerce/admin.py -------------------------------------------------------------------------------- /ecommerce/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/ecommerce/apps.py -------------------------------------------------------------------------------- /ecommerce/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/ecommerce/context_processors.py -------------------------------------------------------------------------------- /ecommerce/custom_permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/ecommerce/custom_permissions.py -------------------------------------------------------------------------------- /ecommerce/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/ecommerce/decorators.py -------------------------------------------------------------------------------- /ecommerce/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/ecommerce/filters.py -------------------------------------------------------------------------------- /ecommerce/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/ecommerce/forms.py -------------------------------------------------------------------------------- /ecommerce/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/ecommerce/migrations/0001_initial.py -------------------------------------------------------------------------------- /ecommerce/migrations/0002_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/ecommerce/migrations/0002_initial.py -------------------------------------------------------------------------------- /ecommerce/migrations/0003_alter_category_slug_alter_category_title_and_more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/ecommerce/migrations/0003_alter_category_slug_alter_category_title_and_more.py -------------------------------------------------------------------------------- /ecommerce/migrations/0004_alter_category_slug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/ecommerce/migrations/0004_alter_category_slug.py -------------------------------------------------------------------------------- /ecommerce/migrations/0005_alter_category_slug_alter_product_category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/ecommerce/migrations/0005_alter_category_slug_alter_product_category.py -------------------------------------------------------------------------------- /ecommerce/migrations/0006_alter_product_title.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/ecommerce/migrations/0006_alter_product_title.py -------------------------------------------------------------------------------- /ecommerce/migrations/0007_alter_image_image_location.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/ecommerce/migrations/0007_alter_image_image_location.py -------------------------------------------------------------------------------- /ecommerce/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ecommerce/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/ecommerce/models.py -------------------------------------------------------------------------------- /ecommerce/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/ecommerce/serializers.py -------------------------------------------------------------------------------- /ecommerce/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/ecommerce/tests.py -------------------------------------------------------------------------------- /ecommerce/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/ecommerce/urls.py -------------------------------------------------------------------------------- /ecommerce/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/ecommerce/views.py -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/entrypoint.sh -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/frontend/README.md -------------------------------------------------------------------------------- /frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/frontend/package-lock.json -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/frontend/postcss.config.js -------------------------------------------------------------------------------- /frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/frontend/public/favicon.ico -------------------------------------------------------------------------------- /frontend/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/frontend/public/index.html -------------------------------------------------------------------------------- /frontend/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/frontend/public/logo192.png -------------------------------------------------------------------------------- /frontend/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/frontend/public/logo512.png -------------------------------------------------------------------------------- /frontend/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/frontend/public/manifest.json -------------------------------------------------------------------------------- /frontend/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/frontend/public/robots.txt -------------------------------------------------------------------------------- /frontend/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/frontend/src/App.js -------------------------------------------------------------------------------- /frontend/src/assets/img/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/assets/img/media/01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/frontend/src/assets/img/media/01.jpg -------------------------------------------------------------------------------- /frontend/src/assets/img/media/02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/frontend/src/assets/img/media/02.jpg -------------------------------------------------------------------------------- /frontend/src/assets/img/media/03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/frontend/src/assets/img/media/03.jpg -------------------------------------------------------------------------------- /frontend/src/assets/img/media/04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/frontend/src/assets/img/media/04.jpg -------------------------------------------------------------------------------- /frontend/src/assets/img/media/06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/frontend/src/assets/img/media/06.jpg -------------------------------------------------------------------------------- /frontend/src/assets/img/media/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/frontend/src/assets/img/media/background.jpg -------------------------------------------------------------------------------- /frontend/src/assets/img/media/bolso.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/frontend/src/assets/img/media/bolso.webp -------------------------------------------------------------------------------- /frontend/src/assets/img/media/card1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/frontend/src/assets/img/media/card1.jpg -------------------------------------------------------------------------------- /frontend/src/assets/img/media/card2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/frontend/src/assets/img/media/card2.jpg -------------------------------------------------------------------------------- /frontend/src/assets/img/media/card3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/frontend/src/assets/img/media/card3.jpg -------------------------------------------------------------------------------- /frontend/src/assets/img/media/correo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/frontend/src/assets/img/media/correo.webp -------------------------------------------------------------------------------- /frontend/src/assets/img/media/image 52.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/frontend/src/assets/img/media/image 52.png -------------------------------------------------------------------------------- /frontend/src/assets/img/media/img3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/frontend/src/assets/img/media/img3.jpg -------------------------------------------------------------------------------- /frontend/src/assets/img/media/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/frontend/src/assets/img/media/logo.png -------------------------------------------------------------------------------- /frontend/src/assets/img/media/mano.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/frontend/src/assets/img/media/mano.jpg -------------------------------------------------------------------------------- /frontend/src/components/Cart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/frontend/src/components/Cart.js -------------------------------------------------------------------------------- /frontend/src/components/Carusel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/frontend/src/components/Carusel.js -------------------------------------------------------------------------------- /frontend/src/components/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/frontend/src/components/Footer.js -------------------------------------------------------------------------------- /frontend/src/components/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/frontend/src/components/Header.js -------------------------------------------------------------------------------- /frontend/src/components/Layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/frontend/src/components/Layout.js -------------------------------------------------------------------------------- /frontend/src/components/PageNotFound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/frontend/src/components/PageNotFound.js -------------------------------------------------------------------------------- /frontend/src/components/Spinner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/frontend/src/components/Spinner.js -------------------------------------------------------------------------------- /frontend/src/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/frontend/src/fonts.css -------------------------------------------------------------------------------- /frontend/src/hooks/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/frontend/src/index.css -------------------------------------------------------------------------------- /frontend/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/frontend/src/index.js -------------------------------------------------------------------------------- /frontend/src/pages/About/About.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/frontend/src/pages/About/About.js -------------------------------------------------------------------------------- /frontend/src/pages/Contact/Contact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/frontend/src/pages/Contact/Contact.js -------------------------------------------------------------------------------- /frontend/src/pages/Home/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/frontend/src/pages/Home/Home.js -------------------------------------------------------------------------------- /frontend/src/pages/Login/Login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/frontend/src/pages/Login/Login.js -------------------------------------------------------------------------------- /frontend/src/pages/Login/Logins.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/frontend/src/pages/Login/Logins.css -------------------------------------------------------------------------------- /frontend/src/pages/Product/Product.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/frontend/src/pages/Product/Product.js -------------------------------------------------------------------------------- /frontend/src/pages/Products/Products.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/frontend/src/pages/Products/Products.js -------------------------------------------------------------------------------- /frontend/src/pages/Profile/Profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/frontend/src/pages/Profile/Profile.js -------------------------------------------------------------------------------- /frontend/src/pages/ProfileSeller/ProfileSeller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/frontend/src/pages/ProfileSeller/ProfileSeller.js -------------------------------------------------------------------------------- /frontend/src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/frontend/src/store/index.js -------------------------------------------------------------------------------- /frontend/src/store/slices/category/category.rest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/frontend/src/store/slices/category/category.rest -------------------------------------------------------------------------------- /frontend/src/store/slices/category/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/frontend/src/store/slices/category/index.js -------------------------------------------------------------------------------- /frontend/src/store/slices/category/services.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/frontend/src/store/slices/category/services.js -------------------------------------------------------------------------------- /frontend/src/store/slices/product/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/frontend/src/store/slices/product/index.js -------------------------------------------------------------------------------- /frontend/src/store/slices/product/services.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/store/slices/user/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/frontend/src/store/slices/user/index.js -------------------------------------------------------------------------------- /frontend/src/store/slices/user/services.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/frontend/src/store/slices/user/services.js -------------------------------------------------------------------------------- /frontend/src/store/slices/user/user.rest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/frontend/src/store/slices/user/user.rest -------------------------------------------------------------------------------- /frontend/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/frontend/tailwind.config.js -------------------------------------------------------------------------------- /local.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/local.Dockerfile -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/manage.py -------------------------------------------------------------------------------- /payment/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /payment/admin.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /payment/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/payment/apps.py -------------------------------------------------------------------------------- /payment/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /payment/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /payment/tests.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /payment/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/payment/urls.py -------------------------------------------------------------------------------- /payment/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/payment/views.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/pyproject.toml -------------------------------------------------------------------------------- /readme/Docker_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/readme/Docker_guide.md -------------------------------------------------------------------------------- /readme/Esquema.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/readme/Esquema.drawio -------------------------------------------------------------------------------- /readme/Guide_Pipenv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/readme/Guide_Pipenv.md -------------------------------------------------------------------------------- /readme/Problemas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/readme/Problemas.md -------------------------------------------------------------------------------- /requirements-deploy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/requirements-deploy.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.8.12 -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/setup.cfg -------------------------------------------------------------------------------- /shopping_cart/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shopping_cart/admin.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shopping_cart/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/shopping_cart/apps.py -------------------------------------------------------------------------------- /shopping_cart/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/shopping_cart/migrations/0001_initial.py -------------------------------------------------------------------------------- /shopping_cart/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shopping_cart/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/shopping_cart/models.py -------------------------------------------------------------------------------- /shopping_cart/shopping_cart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/shopping_cart/shopping_cart.py -------------------------------------------------------------------------------- /shopping_cart/tests.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shopping_cart/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/shopping_cart/urls.py -------------------------------------------------------------------------------- /shopping_cart/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/shopping_cart/views.py -------------------------------------------------------------------------------- /staticfiles/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/staticfiles/css/main.css -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/templates/base.html -------------------------------------------------------------------------------- /templates/cart/cart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/templates/cart/cart.html -------------------------------------------------------------------------------- /templates/cart/images.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/templates/cart/images.html -------------------------------------------------------------------------------- /templates/categories.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/templates/categories.html -------------------------------------------------------------------------------- /templates/ecommerce/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/templates/ecommerce/home.html -------------------------------------------------------------------------------- /templates/ecommerce/images.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/templates/ecommerce/images.html -------------------------------------------------------------------------------- /templates/ecommerce/product_delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/templates/ecommerce/product_delete.html -------------------------------------------------------------------------------- /templates/ecommerce/product_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/templates/ecommerce/product_detail.html -------------------------------------------------------------------------------- /templates/ecommerce/product_edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/templates/ecommerce/product_edit.html -------------------------------------------------------------------------------- /templates/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/templates/footer.html -------------------------------------------------------------------------------- /templates/hero.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/templates/hero.html -------------------------------------------------------------------------------- /templates/navbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/templates/navbar.html -------------------------------------------------------------------------------- /templates/payment/cancel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/templates/payment/cancel.html -------------------------------------------------------------------------------- /templates/payment/payment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/templates/payment/payment.html -------------------------------------------------------------------------------- /templates/payment/success.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/templates/payment/success.html -------------------------------------------------------------------------------- /templates/users/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/templates/users/login.html -------------------------------------------------------------------------------- /templates/users/panel.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/users/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/templates/users/register.html -------------------------------------------------------------------------------- /templates/users/seller_register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/templates/users/seller_register.html -------------------------------------------------------------------------------- /templates/users/user_panel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/templates/users/user_panel.html -------------------------------------------------------------------------------- /templates/users/users_edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/templates/users/users_edit.html -------------------------------------------------------------------------------- /users/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /users/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/users/admin.py -------------------------------------------------------------------------------- /users/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/users/apps.py -------------------------------------------------------------------------------- /users/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/users/decorators.py -------------------------------------------------------------------------------- /users/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/users/forms.py -------------------------------------------------------------------------------- /users/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/users/migrations/0001_initial.py -------------------------------------------------------------------------------- /users/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /users/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/users/models.py -------------------------------------------------------------------------------- /users/permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/users/permissions.py -------------------------------------------------------------------------------- /users/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/users/serializers.py -------------------------------------------------------------------------------- /users/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/users/tests.py -------------------------------------------------------------------------------- /users/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/users/urls.py -------------------------------------------------------------------------------- /users/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-en-equipo/MarketPlace/HEAD/users/views.py --------------------------------------------------------------------------------