├── .gitignore ├── .vscode └── settings.json ├── README.md ├── core ├── __init__.py ├── admin.py ├── api │ ├── serializers.py │ ├── urls.py │ └── views.py ├── apps.py ├── forms.py ├── management │ └── commands │ │ └── rename.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── templatetags │ └── cart_template_tags.py ├── tests.py ├── urls.py └── views.py ├── home ├── __init__.py ├── settings │ ├── __init__.py │ ├── base.py │ ├── dev.py │ └── prod.py ├── urls.py └── wsgi │ ├── dev.py │ └── prod.py ├── manage.py ├── media ├── add2.jpg └── add4.webp ├── package.json ├── public ├── favicon.ico ├── index.html └── manifest.json ├── requirements.txt ├── src ├── App.js ├── App.test.js ├── constants.js ├── containers │ ├── Home.js │ ├── Layout.js │ ├── Login.js │ ├── ProductList.js │ └── Signup.js ├── hoc │ └── hoc.js ├── index.js ├── registerServiceWorker.js ├── routes.js ├── store │ ├── actions │ │ ├── actionTypes.js │ │ ├── auth.js │ │ └── cart.js │ ├── reducers │ │ ├── auth.js │ │ └── cart.js │ └── utility.js └── utils.js └── thumbnail.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinmyoswe/React-and-Django-Ecommerce/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinmyoswe/React-and-Django-Ecommerce/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinmyoswe/React-and-Django-Ecommerce/HEAD/README.md -------------------------------------------------------------------------------- /core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinmyoswe/React-and-Django-Ecommerce/HEAD/core/admin.py -------------------------------------------------------------------------------- /core/api/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinmyoswe/React-and-Django-Ecommerce/HEAD/core/api/serializers.py -------------------------------------------------------------------------------- /core/api/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinmyoswe/React-and-Django-Ecommerce/HEAD/core/api/urls.py -------------------------------------------------------------------------------- /core/api/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinmyoswe/React-and-Django-Ecommerce/HEAD/core/api/views.py -------------------------------------------------------------------------------- /core/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinmyoswe/React-and-Django-Ecommerce/HEAD/core/apps.py -------------------------------------------------------------------------------- /core/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinmyoswe/React-and-Django-Ecommerce/HEAD/core/forms.py -------------------------------------------------------------------------------- /core/management/commands/rename.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinmyoswe/React-and-Django-Ecommerce/HEAD/core/management/commands/rename.py -------------------------------------------------------------------------------- /core/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinmyoswe/React-and-Django-Ecommerce/HEAD/core/migrations/0001_initial.py -------------------------------------------------------------------------------- /core/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinmyoswe/React-and-Django-Ecommerce/HEAD/core/models.py -------------------------------------------------------------------------------- /core/templatetags/cart_template_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinmyoswe/React-and-Django-Ecommerce/HEAD/core/templatetags/cart_template_tags.py -------------------------------------------------------------------------------- /core/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinmyoswe/React-and-Django-Ecommerce/HEAD/core/tests.py -------------------------------------------------------------------------------- /core/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinmyoswe/React-and-Django-Ecommerce/HEAD/core/urls.py -------------------------------------------------------------------------------- /core/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinmyoswe/React-and-Django-Ecommerce/HEAD/core/views.py -------------------------------------------------------------------------------- /home/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /home/settings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /home/settings/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinmyoswe/React-and-Django-Ecommerce/HEAD/home/settings/base.py -------------------------------------------------------------------------------- /home/settings/dev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinmyoswe/React-and-Django-Ecommerce/HEAD/home/settings/dev.py -------------------------------------------------------------------------------- /home/settings/prod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinmyoswe/React-and-Django-Ecommerce/HEAD/home/settings/prod.py -------------------------------------------------------------------------------- /home/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinmyoswe/React-and-Django-Ecommerce/HEAD/home/urls.py -------------------------------------------------------------------------------- /home/wsgi/dev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinmyoswe/React-and-Django-Ecommerce/HEAD/home/wsgi/dev.py -------------------------------------------------------------------------------- /home/wsgi/prod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinmyoswe/React-and-Django-Ecommerce/HEAD/home/wsgi/prod.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinmyoswe/React-and-Django-Ecommerce/HEAD/manage.py -------------------------------------------------------------------------------- /media/add2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinmyoswe/React-and-Django-Ecommerce/HEAD/media/add2.jpg -------------------------------------------------------------------------------- /media/add4.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinmyoswe/React-and-Django-Ecommerce/HEAD/media/add4.webp -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinmyoswe/React-and-Django-Ecommerce/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinmyoswe/React-and-Django-Ecommerce/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinmyoswe/React-and-Django-Ecommerce/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinmyoswe/React-and-Django-Ecommerce/HEAD/public/manifest.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinmyoswe/React-and-Django-Ecommerce/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinmyoswe/React-and-Django-Ecommerce/HEAD/src/App.js -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinmyoswe/React-and-Django-Ecommerce/HEAD/src/App.test.js -------------------------------------------------------------------------------- /src/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinmyoswe/React-and-Django-Ecommerce/HEAD/src/constants.js -------------------------------------------------------------------------------- /src/containers/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinmyoswe/React-and-Django-Ecommerce/HEAD/src/containers/Home.js -------------------------------------------------------------------------------- /src/containers/Layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinmyoswe/React-and-Django-Ecommerce/HEAD/src/containers/Layout.js -------------------------------------------------------------------------------- /src/containers/Login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinmyoswe/React-and-Django-Ecommerce/HEAD/src/containers/Login.js -------------------------------------------------------------------------------- /src/containers/ProductList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinmyoswe/React-and-Django-Ecommerce/HEAD/src/containers/ProductList.js -------------------------------------------------------------------------------- /src/containers/Signup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinmyoswe/React-and-Django-Ecommerce/HEAD/src/containers/Signup.js -------------------------------------------------------------------------------- /src/hoc/hoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinmyoswe/React-and-Django-Ecommerce/HEAD/src/hoc/hoc.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinmyoswe/React-and-Django-Ecommerce/HEAD/src/index.js -------------------------------------------------------------------------------- /src/registerServiceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinmyoswe/React-and-Django-Ecommerce/HEAD/src/registerServiceWorker.js -------------------------------------------------------------------------------- /src/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinmyoswe/React-and-Django-Ecommerce/HEAD/src/routes.js -------------------------------------------------------------------------------- /src/store/actions/actionTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinmyoswe/React-and-Django-Ecommerce/HEAD/src/store/actions/actionTypes.js -------------------------------------------------------------------------------- /src/store/actions/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinmyoswe/React-and-Django-Ecommerce/HEAD/src/store/actions/auth.js -------------------------------------------------------------------------------- /src/store/actions/cart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinmyoswe/React-and-Django-Ecommerce/HEAD/src/store/actions/cart.js -------------------------------------------------------------------------------- /src/store/reducers/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinmyoswe/React-and-Django-Ecommerce/HEAD/src/store/reducers/auth.js -------------------------------------------------------------------------------- /src/store/reducers/cart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinmyoswe/React-and-Django-Ecommerce/HEAD/src/store/reducers/cart.js -------------------------------------------------------------------------------- /src/store/utility.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinmyoswe/React-and-Django-Ecommerce/HEAD/src/store/utility.js -------------------------------------------------------------------------------- /src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinmyoswe/React-and-Django-Ecommerce/HEAD/src/utils.js -------------------------------------------------------------------------------- /thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinmyoswe/React-and-Django-Ecommerce/HEAD/thumbnail.png --------------------------------------------------------------------------------