├── .editorconfig ├── .github └── workflows │ └── main.yml ├── .gitignore ├── Makefile ├── Pipfile ├── Pipfile.lock ├── README.md ├── backend ├── __init__.py ├── covexit │ ├── __init__.py │ ├── account │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── api │ │ │ ├── __init__.py │ │ │ ├── serializers.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── apps.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_auto_20200411_0249.py │ │ │ ├── 0003_add_waiting_list.py │ │ │ ├── 0004_make_waitinglist_email_unique.py │ │ │ ├── 0005_rename_waitinglist_to_mailinglist.py │ │ │ ├── 0006_auto_20200501_1144.py │ │ │ ├── 0007_auto_20200502_0915.py │ │ │ ├── 0008_use_email_instead_of_username.py │ │ │ ├── 0009_remove_tos_and_privacy.py │ │ │ └── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── api_extensions │ │ ├── __init__.py │ │ ├── permissions.py │ │ ├── serializers │ │ │ ├── __init__.py │ │ │ ├── admin │ │ │ │ ├── __init__.py │ │ │ │ ├── partner.py │ │ │ │ └── product.py │ │ │ ├── checkout.py │ │ │ └── product.py │ │ ├── urls.py │ │ └── views │ │ │ ├── admin │ │ │ ├── __init__.py │ │ │ ├── partner.py │ │ │ └── product.py │ │ │ ├── product.py │ │ │ └── root.py │ ├── core │ │ ├── __init__.py │ │ └── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_add_product_classes.py │ │ │ ├── 0003_set_site_names.py │ │ │ ├── 0004_add_categories.py │ │ │ └── __init__.py │ ├── partner │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_auto_20141007_2032.py │ │ │ ├── 0003_auto_20150604_1450.py │ │ │ ├── 0004_auto_20160107_1755.py │ │ │ ├── 0005_auto_20181115_1953.py │ │ │ ├── 0006_add_forked_partner.py │ │ │ ├── 0007_add_partner_address.py │ │ │ ├── 0008_remove_industry_field.py │ │ │ ├── 0009_add_description.py │ │ │ ├── 0010_add_image.py │ │ │ ├── 0011_partneraddress_vat_no.py │ │ │ ├── 0012_partner_is_active.py │ │ │ └── __init__.py │ │ ├── models.py │ │ └── strategy.py │ ├── settings │ │ ├── __init__.py │ │ ├── base.py │ │ ├── dev.py │ │ └── production.py │ ├── urls.py │ └── wsgi.py └── manage.py ├── frontend ├── i18next-parser.config.js ├── jsconfig.json ├── package-lock.json ├── package.json ├── public │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── apple-touch-icon-180x180.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ ├── index.html │ ├── locales │ │ ├── bac │ │ │ └── en │ │ │ │ └── photo-select.json │ │ ├── de │ │ │ ├── about.json │ │ │ ├── account.json │ │ │ ├── first-product.json │ │ │ ├── home.json │ │ │ ├── mailing-list.json │ │ │ ├── menu.json │ │ │ ├── new-store-business.json │ │ │ ├── new-store-owner.json │ │ │ ├── new-store.json │ │ │ ├── order-form.json │ │ │ ├── order-table.json │ │ │ ├── order.json │ │ │ ├── owner-photo-select.json │ │ │ ├── owner-tabs.json │ │ │ ├── photo-select.json │ │ │ ├── product-cru.json │ │ │ ├── product-list.json │ │ │ ├── store-detail.json │ │ │ ├── store-list.json │ │ │ └── translation.json │ │ └── en │ │ │ ├── about.json │ │ │ ├── account.json │ │ │ ├── first-product.json │ │ │ ├── home.json │ │ │ ├── mailing-list.json │ │ │ ├── menu.json │ │ │ ├── new-store-business.json │ │ │ ├── new-store-owner.json │ │ │ ├── new-store.json │ │ │ ├── order-form.json │ │ │ ├── order-table.json │ │ │ ├── order.json │ │ │ ├── owner-photo-select.json │ │ │ ├── owner-tabs.json │ │ │ ├── product-cru.json │ │ │ ├── product-list.json │ │ │ ├── store-detail.json │ │ │ ├── store-list.json │ │ │ └── translation.json │ ├── mstile-144x144.png │ ├── mstile-150x150.png │ ├── mstile-310x150.png │ ├── mstile-310x310.png │ ├── mstile-70x70.png │ ├── photos │ │ ├── business_books.jpg │ │ ├── business_clothes.jpg │ │ ├── business_coffee.jpg │ │ ├── business_drugstore.jpg │ │ ├── business_electronics.jpg │ │ ├── business_garden.jpg │ │ ├── business_jewellry.jpg │ │ ├── business_living.jpg │ │ ├── business_other.jpg │ │ └── business_toys.jpg │ ├── robots.txt │ ├── safari-pinned-tab.svg │ └── webmanifest.json ├── src │ ├── app │ │ ├── App.js │ │ ├── App.scss │ │ └── Routes.js │ ├── assets │ │ ├── back-arrow.svg │ │ ├── bakery1.jpg │ │ ├── bakery2.jpg │ │ ├── bakery3.jpg │ │ ├── bakery4.jpg │ │ ├── bakery5.jpg │ │ ├── bread.jpg │ │ ├── bread_2.jpg │ │ ├── business.jpg │ │ ├── checkmark.svg │ │ ├── chevron-down.svg │ │ ├── edit.svg │ │ ├── gift.svg │ │ ├── home_bg.png │ │ ├── info_banner.png │ │ ├── logo.svg │ │ ├── magnifier.svg │ │ ├── marker.svg │ │ ├── no_image.svg │ │ ├── oil.jpg │ │ ├── oil_2.jpg │ │ ├── pen.svg │ │ ├── plus.svg │ │ ├── rounded_plus.svg │ │ ├── share.svg │ │ ├── tea.jpg │ │ ├── tea_2.jpg │ │ └── team │ │ │ ├── akolade.png │ │ │ ├── balint.png │ │ │ ├── chiara.png │ │ │ ├── david.png │ │ │ ├── fabian.png │ │ │ ├── fabian_katz.png │ │ │ ├── ines.png │ │ │ ├── laura.png │ │ │ ├── lea.png │ │ │ ├── lisa.png │ │ │ ├── marco.png │ │ │ ├── moritz.png │ │ │ ├── naomi.png │ │ │ ├── nico.png │ │ │ ├── nicolai.png │ │ │ ├── philipp.png │ │ │ ├── silvia.png │ │ │ ├── thomas.png │ │ │ └── volker.png │ ├── components │ │ ├── Button │ │ │ ├── Button.js │ │ │ └── Button.scss │ │ ├── ButtonWithImage │ │ │ ├── ButtonWithImage.js │ │ │ └── ButtonWithImage.scss │ │ ├── CategorySelect │ │ │ ├── CategorySelect.js │ │ │ └── CategorySelect.scss │ │ ├── ClickOut │ │ │ └── ClickOut.js │ │ ├── Dropdown │ │ │ ├── Dropdown.js │ │ │ └── Dropdown.scss │ │ ├── EnlistModal │ │ │ ├── EnlistModal.js │ │ │ └── EnlistModal.scss │ │ ├── Fields │ │ │ ├── Fields.js │ │ │ └── Fields.scss │ │ ├── Footer │ │ │ ├── Footer.js │ │ │ └── Footer.scss │ │ ├── Form │ │ │ ├── Form.js │ │ │ └── Form.scss │ │ ├── Header │ │ │ ├── Header.js │ │ │ └── Header.scss │ │ ├── InlineInputs │ │ │ └── InlineInputs.js │ │ ├── Loader │ │ │ ├── Loader.js │ │ │ └── Loader.scss │ │ ├── Map │ │ │ ├── Map.js │ │ │ └── Map.scss │ │ ├── Menu │ │ │ ├── Menu.js │ │ │ └── Menu.scss │ │ ├── Modal │ │ │ ├── Modal.js │ │ │ └── Modal.scss │ │ ├── OrderItem │ │ │ ├── OrderItem.js │ │ │ └── OrderItem.scss │ │ ├── OrderTable │ │ │ ├── OrderTable.js │ │ │ └── OrderTable.scss │ │ ├── PhotoSelector │ │ │ ├── PhotoSelector.js │ │ │ └── PhotoSelector.scss │ │ ├── PlacesSuggest │ │ │ ├── PlacesSuggest.js │ │ │ └── PlacesSuggest.scss │ │ ├── PrivateRoute │ │ │ └── PrivateRoute.js │ │ ├── ProductForm │ │ │ └── ProductForm.js │ │ ├── ProductGroup │ │ │ ├── ProductGroup.js │ │ │ └── ProductGroup.scss │ │ ├── ProductItem │ │ │ ├── ProductItem.js │ │ │ └── ProductItem.scss │ │ ├── ProductList │ │ │ ├── ProductList.js │ │ │ └── ProductList.scss │ │ ├── Share │ │ │ ├── Share.js │ │ │ └── Share.scss │ │ ├── Stepper │ │ │ ├── Stepper.js │ │ │ └── Stepper.scss │ │ ├── StoreList │ │ │ ├── StoreList.js │ │ │ └── StoreList.scss │ │ ├── Tab │ │ │ ├── Tab.js │ │ │ └── Tab.scss │ │ ├── Toast │ │ │ ├── Toast.js │ │ │ └── Toast.scss │ │ ├── ViewWrappers │ │ │ ├── ViewWrappers.js │ │ │ └── ViewWrappers.scss │ │ └── Yippey │ │ │ ├── Yippey.js │ │ │ └── Yippey.scss │ ├── context │ │ ├── CartContext.js │ │ ├── Logger.js │ │ ├── StoreListContext.js │ │ ├── ToastContext.js │ │ ├── UserContext.js │ │ └── useCurrentLocation.js │ ├── i18n.js │ ├── index.js │ ├── index.scss │ ├── serviceWorker.js │ ├── setupTests.js │ ├── shared │ │ ├── api.js │ │ ├── apiDataTransform.js │ │ ├── businessImages.js │ │ ├── mapStyles.json │ │ └── useLocalStorage.js │ ├── stylebase │ │ ├── global.scss │ │ ├── type.scss │ │ ├── utils.scss │ │ └── variables.scss │ ├── textpages │ │ ├── About.scss │ │ ├── about.js │ │ ├── agb.js │ │ ├── imprint.js │ │ └── privacy.js │ └── views │ │ ├── Home.js │ │ ├── Home.scss │ │ ├── Login.js │ │ ├── NewStore │ │ ├── BusinessForm.js │ │ ├── NewStore.js │ │ ├── NewStore.scss │ │ ├── PersonalForm.js │ │ └── WaitingForVerify.js │ │ ├── NoMatch.js │ │ ├── Onboarding │ │ ├── FirstProduct.js │ │ ├── Onboarding.js │ │ ├── Onboarding.scss │ │ ├── PhotoSelect.js │ │ └── PhotoSelect.scss │ │ ├── OrderForm.js │ │ ├── OrderForm.scss │ │ ├── Orders │ │ ├── Order.js │ │ ├── Order.scss │ │ ├── Orders.js │ │ └── Orders.scss │ │ ├── ProductCreateEdit.js │ │ ├── Store.js │ │ ├── Store.scss │ │ ├── Stores.js │ │ ├── TextPage.js │ │ └── Verify.js └── yarn.lock ├── production.txt └── tox.ini /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/Makefile -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/README.md -------------------------------------------------------------------------------- /backend/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/covexit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/covexit/account/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/covexit/account/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/backend/covexit/account/admin.py -------------------------------------------------------------------------------- /backend/covexit/account/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/covexit/account/api/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/backend/covexit/account/api/serializers.py -------------------------------------------------------------------------------- /backend/covexit/account/api/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/backend/covexit/account/api/urls.py -------------------------------------------------------------------------------- /backend/covexit/account/api/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/backend/covexit/account/api/views.py -------------------------------------------------------------------------------- /backend/covexit/account/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/backend/covexit/account/apps.py -------------------------------------------------------------------------------- /backend/covexit/account/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/backend/covexit/account/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/covexit/account/migrations/0002_auto_20200411_0249.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/backend/covexit/account/migrations/0002_auto_20200411_0249.py -------------------------------------------------------------------------------- /backend/covexit/account/migrations/0003_add_waiting_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/backend/covexit/account/migrations/0003_add_waiting_list.py -------------------------------------------------------------------------------- /backend/covexit/account/migrations/0004_make_waitinglist_email_unique.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/backend/covexit/account/migrations/0004_make_waitinglist_email_unique.py -------------------------------------------------------------------------------- /backend/covexit/account/migrations/0005_rename_waitinglist_to_mailinglist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/backend/covexit/account/migrations/0005_rename_waitinglist_to_mailinglist.py -------------------------------------------------------------------------------- /backend/covexit/account/migrations/0006_auto_20200501_1144.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/backend/covexit/account/migrations/0006_auto_20200501_1144.py -------------------------------------------------------------------------------- /backend/covexit/account/migrations/0007_auto_20200502_0915.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/backend/covexit/account/migrations/0007_auto_20200502_0915.py -------------------------------------------------------------------------------- /backend/covexit/account/migrations/0008_use_email_instead_of_username.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/backend/covexit/account/migrations/0008_use_email_instead_of_username.py -------------------------------------------------------------------------------- /backend/covexit/account/migrations/0009_remove_tos_and_privacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/backend/covexit/account/migrations/0009_remove_tos_and_privacy.py -------------------------------------------------------------------------------- /backend/covexit/account/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/covexit/account/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/backend/covexit/account/models.py -------------------------------------------------------------------------------- /backend/covexit/account/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/backend/covexit/account/tests.py -------------------------------------------------------------------------------- /backend/covexit/api_extensions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/covexit/api_extensions/permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/backend/covexit/api_extensions/permissions.py -------------------------------------------------------------------------------- /backend/covexit/api_extensions/serializers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/covexit/api_extensions/serializers/admin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/covexit/api_extensions/serializers/admin/partner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/backend/covexit/api_extensions/serializers/admin/partner.py -------------------------------------------------------------------------------- /backend/covexit/api_extensions/serializers/admin/product.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/backend/covexit/api_extensions/serializers/admin/product.py -------------------------------------------------------------------------------- /backend/covexit/api_extensions/serializers/checkout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/backend/covexit/api_extensions/serializers/checkout.py -------------------------------------------------------------------------------- /backend/covexit/api_extensions/serializers/product.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/backend/covexit/api_extensions/serializers/product.py -------------------------------------------------------------------------------- /backend/covexit/api_extensions/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/backend/covexit/api_extensions/urls.py -------------------------------------------------------------------------------- /backend/covexit/api_extensions/views/admin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/covexit/api_extensions/views/admin/partner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/backend/covexit/api_extensions/views/admin/partner.py -------------------------------------------------------------------------------- /backend/covexit/api_extensions/views/admin/product.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/backend/covexit/api_extensions/views/admin/product.py -------------------------------------------------------------------------------- /backend/covexit/api_extensions/views/product.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/backend/covexit/api_extensions/views/product.py -------------------------------------------------------------------------------- /backend/covexit/api_extensions/views/root.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/backend/covexit/api_extensions/views/root.py -------------------------------------------------------------------------------- /backend/covexit/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/covexit/core/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/backend/covexit/core/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/covexit/core/migrations/0002_add_product_classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/backend/covexit/core/migrations/0002_add_product_classes.py -------------------------------------------------------------------------------- /backend/covexit/core/migrations/0003_set_site_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/backend/covexit/core/migrations/0003_set_site_names.py -------------------------------------------------------------------------------- /backend/covexit/core/migrations/0004_add_categories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/backend/covexit/core/migrations/0004_add_categories.py -------------------------------------------------------------------------------- /backend/covexit/core/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/covexit/partner/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/covexit/partner/admin.py: -------------------------------------------------------------------------------- 1 | from oscar.apps.partner.admin import * # noqa 2 | -------------------------------------------------------------------------------- /backend/covexit/partner/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/backend/covexit/partner/apps.py -------------------------------------------------------------------------------- /backend/covexit/partner/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/backend/covexit/partner/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/covexit/partner/migrations/0002_auto_20141007_2032.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/backend/covexit/partner/migrations/0002_auto_20141007_2032.py -------------------------------------------------------------------------------- /backend/covexit/partner/migrations/0003_auto_20150604_1450.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/backend/covexit/partner/migrations/0003_auto_20150604_1450.py -------------------------------------------------------------------------------- /backend/covexit/partner/migrations/0004_auto_20160107_1755.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/backend/covexit/partner/migrations/0004_auto_20160107_1755.py -------------------------------------------------------------------------------- /backend/covexit/partner/migrations/0005_auto_20181115_1953.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/backend/covexit/partner/migrations/0005_auto_20181115_1953.py -------------------------------------------------------------------------------- /backend/covexit/partner/migrations/0006_add_forked_partner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/backend/covexit/partner/migrations/0006_add_forked_partner.py -------------------------------------------------------------------------------- /backend/covexit/partner/migrations/0007_add_partner_address.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/backend/covexit/partner/migrations/0007_add_partner_address.py -------------------------------------------------------------------------------- /backend/covexit/partner/migrations/0008_remove_industry_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/backend/covexit/partner/migrations/0008_remove_industry_field.py -------------------------------------------------------------------------------- /backend/covexit/partner/migrations/0009_add_description.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/backend/covexit/partner/migrations/0009_add_description.py -------------------------------------------------------------------------------- /backend/covexit/partner/migrations/0010_add_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/backend/covexit/partner/migrations/0010_add_image.py -------------------------------------------------------------------------------- /backend/covexit/partner/migrations/0011_partneraddress_vat_no.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/backend/covexit/partner/migrations/0011_partneraddress_vat_no.py -------------------------------------------------------------------------------- /backend/covexit/partner/migrations/0012_partner_is_active.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/backend/covexit/partner/migrations/0012_partner_is_active.py -------------------------------------------------------------------------------- /backend/covexit/partner/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/covexit/partner/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/backend/covexit/partner/models.py -------------------------------------------------------------------------------- /backend/covexit/partner/strategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/backend/covexit/partner/strategy.py -------------------------------------------------------------------------------- /backend/covexit/settings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/covexit/settings/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/backend/covexit/settings/base.py -------------------------------------------------------------------------------- /backend/covexit/settings/dev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/backend/covexit/settings/dev.py -------------------------------------------------------------------------------- /backend/covexit/settings/production.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/backend/covexit/settings/production.py -------------------------------------------------------------------------------- /backend/covexit/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/backend/covexit/urls.py -------------------------------------------------------------------------------- /backend/covexit/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/backend/covexit/wsgi.py -------------------------------------------------------------------------------- /backend/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/backend/manage.py -------------------------------------------------------------------------------- /frontend/i18next-parser.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/i18next-parser.config.js -------------------------------------------------------------------------------- /frontend/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/jsconfig.json -------------------------------------------------------------------------------- /frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/package-lock.json -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/public/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/public/android-chrome-192x192.png -------------------------------------------------------------------------------- /frontend/public/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/public/android-chrome-512x512.png -------------------------------------------------------------------------------- /frontend/public/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/public/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /frontend/public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/public/favicon-16x16.png -------------------------------------------------------------------------------- /frontend/public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/public/favicon-32x32.png -------------------------------------------------------------------------------- /frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/public/favicon.ico -------------------------------------------------------------------------------- /frontend/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/public/index.html -------------------------------------------------------------------------------- /frontend/public/locales/bac/en/photo-select.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/public/locales/bac/en/photo-select.json -------------------------------------------------------------------------------- /frontend/public/locales/de/about.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/public/locales/de/about.json -------------------------------------------------------------------------------- /frontend/public/locales/de/account.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/public/locales/de/account.json -------------------------------------------------------------------------------- /frontend/public/locales/de/first-product.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/public/locales/de/first-product.json -------------------------------------------------------------------------------- /frontend/public/locales/de/home.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/public/locales/de/home.json -------------------------------------------------------------------------------- /frontend/public/locales/de/mailing-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/public/locales/de/mailing-list.json -------------------------------------------------------------------------------- /frontend/public/locales/de/menu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/public/locales/de/menu.json -------------------------------------------------------------------------------- /frontend/public/locales/de/new-store-business.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/public/locales/de/new-store-business.json -------------------------------------------------------------------------------- /frontend/public/locales/de/new-store-owner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/public/locales/de/new-store-owner.json -------------------------------------------------------------------------------- /frontend/public/locales/de/new-store.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/public/locales/de/new-store.json -------------------------------------------------------------------------------- /frontend/public/locales/de/order-form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/public/locales/de/order-form.json -------------------------------------------------------------------------------- /frontend/public/locales/de/order-table.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/public/locales/de/order-table.json -------------------------------------------------------------------------------- /frontend/public/locales/de/order.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/public/locales/de/order.json -------------------------------------------------------------------------------- /frontend/public/locales/de/owner-photo-select.json: -------------------------------------------------------------------------------- 1 | { 2 | "continueButton": "Speichern & Fortfahren" 3 | } 4 | -------------------------------------------------------------------------------- /frontend/public/locales/de/owner-tabs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/public/locales/de/owner-tabs.json -------------------------------------------------------------------------------- /frontend/public/locales/de/photo-select.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/public/locales/de/photo-select.json -------------------------------------------------------------------------------- /frontend/public/locales/de/product-cru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/public/locales/de/product-cru.json -------------------------------------------------------------------------------- /frontend/public/locales/de/product-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/public/locales/de/product-list.json -------------------------------------------------------------------------------- /frontend/public/locales/de/store-detail.json: -------------------------------------------------------------------------------- 1 | { 2 | "callButton": "Anrufen" 3 | } 4 | -------------------------------------------------------------------------------- /frontend/public/locales/de/store-list.json: -------------------------------------------------------------------------------- 1 | { 2 | "heading": "Geschäfte in Deiner Nähe" 3 | } 4 | -------------------------------------------------------------------------------- /frontend/public/locales/de/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/public/locales/de/translation.json -------------------------------------------------------------------------------- /frontend/public/locales/en/about.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/public/locales/en/about.json -------------------------------------------------------------------------------- /frontend/public/locales/en/account.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/public/locales/en/account.json -------------------------------------------------------------------------------- /frontend/public/locales/en/first-product.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/public/locales/en/first-product.json -------------------------------------------------------------------------------- /frontend/public/locales/en/home.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/public/locales/en/home.json -------------------------------------------------------------------------------- /frontend/public/locales/en/mailing-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/public/locales/en/mailing-list.json -------------------------------------------------------------------------------- /frontend/public/locales/en/menu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/public/locales/en/menu.json -------------------------------------------------------------------------------- /frontend/public/locales/en/new-store-business.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/public/locales/en/new-store-business.json -------------------------------------------------------------------------------- /frontend/public/locales/en/new-store-owner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/public/locales/en/new-store-owner.json -------------------------------------------------------------------------------- /frontend/public/locales/en/new-store.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/public/locales/en/new-store.json -------------------------------------------------------------------------------- /frontend/public/locales/en/order-form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/public/locales/en/order-form.json -------------------------------------------------------------------------------- /frontend/public/locales/en/order-table.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/public/locales/en/order-table.json -------------------------------------------------------------------------------- /frontend/public/locales/en/order.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/public/locales/en/order.json -------------------------------------------------------------------------------- /frontend/public/locales/en/owner-photo-select.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/public/locales/en/owner-photo-select.json -------------------------------------------------------------------------------- /frontend/public/locales/en/owner-tabs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/public/locales/en/owner-tabs.json -------------------------------------------------------------------------------- /frontend/public/locales/en/product-cru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/public/locales/en/product-cru.json -------------------------------------------------------------------------------- /frontend/public/locales/en/product-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/public/locales/en/product-list.json -------------------------------------------------------------------------------- /frontend/public/locales/en/store-detail.json: -------------------------------------------------------------------------------- 1 | { 2 | "callButton": "Call us" 3 | } 4 | -------------------------------------------------------------------------------- /frontend/public/locales/en/store-list.json: -------------------------------------------------------------------------------- 1 | { 2 | "heading": "Stores in your area" 3 | } 4 | -------------------------------------------------------------------------------- /frontend/public/locales/en/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/public/locales/en/translation.json -------------------------------------------------------------------------------- /frontend/public/mstile-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/public/mstile-144x144.png -------------------------------------------------------------------------------- /frontend/public/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/public/mstile-150x150.png -------------------------------------------------------------------------------- /frontend/public/mstile-310x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/public/mstile-310x150.png -------------------------------------------------------------------------------- /frontend/public/mstile-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/public/mstile-310x310.png -------------------------------------------------------------------------------- /frontend/public/mstile-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/public/mstile-70x70.png -------------------------------------------------------------------------------- /frontend/public/photos/business_books.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/public/photos/business_books.jpg -------------------------------------------------------------------------------- /frontend/public/photos/business_clothes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/public/photos/business_clothes.jpg -------------------------------------------------------------------------------- /frontend/public/photos/business_coffee.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/public/photos/business_coffee.jpg -------------------------------------------------------------------------------- /frontend/public/photos/business_drugstore.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/public/photos/business_drugstore.jpg -------------------------------------------------------------------------------- /frontend/public/photos/business_electronics.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/public/photos/business_electronics.jpg -------------------------------------------------------------------------------- /frontend/public/photos/business_garden.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/public/photos/business_garden.jpg -------------------------------------------------------------------------------- /frontend/public/photos/business_jewellry.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/public/photos/business_jewellry.jpg -------------------------------------------------------------------------------- /frontend/public/photos/business_living.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/public/photos/business_living.jpg -------------------------------------------------------------------------------- /frontend/public/photos/business_other.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/public/photos/business_other.jpg -------------------------------------------------------------------------------- /frontend/public/photos/business_toys.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/public/photos/business_toys.jpg -------------------------------------------------------------------------------- /frontend/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/public/robots.txt -------------------------------------------------------------------------------- /frontend/public/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/public/safari-pinned-tab.svg -------------------------------------------------------------------------------- /frontend/public/webmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/public/webmanifest.json -------------------------------------------------------------------------------- /frontend/src/app/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/app/App.js -------------------------------------------------------------------------------- /frontend/src/app/App.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/app/App.scss -------------------------------------------------------------------------------- /frontend/src/app/Routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/app/Routes.js -------------------------------------------------------------------------------- /frontend/src/assets/back-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/assets/back-arrow.svg -------------------------------------------------------------------------------- /frontend/src/assets/bakery1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/assets/bakery1.jpg -------------------------------------------------------------------------------- /frontend/src/assets/bakery2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/assets/bakery2.jpg -------------------------------------------------------------------------------- /frontend/src/assets/bakery3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/assets/bakery3.jpg -------------------------------------------------------------------------------- /frontend/src/assets/bakery4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/assets/bakery4.jpg -------------------------------------------------------------------------------- /frontend/src/assets/bakery5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/assets/bakery5.jpg -------------------------------------------------------------------------------- /frontend/src/assets/bread.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/assets/bread.jpg -------------------------------------------------------------------------------- /frontend/src/assets/bread_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/assets/bread_2.jpg -------------------------------------------------------------------------------- /frontend/src/assets/business.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/assets/business.jpg -------------------------------------------------------------------------------- /frontend/src/assets/checkmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/assets/checkmark.svg -------------------------------------------------------------------------------- /frontend/src/assets/chevron-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/assets/chevron-down.svg -------------------------------------------------------------------------------- /frontend/src/assets/edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/assets/edit.svg -------------------------------------------------------------------------------- /frontend/src/assets/gift.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/assets/gift.svg -------------------------------------------------------------------------------- /frontend/src/assets/home_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/assets/home_bg.png -------------------------------------------------------------------------------- /frontend/src/assets/info_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/assets/info_banner.png -------------------------------------------------------------------------------- /frontend/src/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/assets/logo.svg -------------------------------------------------------------------------------- /frontend/src/assets/magnifier.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/assets/magnifier.svg -------------------------------------------------------------------------------- /frontend/src/assets/marker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/assets/marker.svg -------------------------------------------------------------------------------- /frontend/src/assets/no_image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/assets/no_image.svg -------------------------------------------------------------------------------- /frontend/src/assets/oil.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/assets/oil.jpg -------------------------------------------------------------------------------- /frontend/src/assets/oil_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/assets/oil_2.jpg -------------------------------------------------------------------------------- /frontend/src/assets/pen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/assets/pen.svg -------------------------------------------------------------------------------- /frontend/src/assets/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/assets/plus.svg -------------------------------------------------------------------------------- /frontend/src/assets/rounded_plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/assets/rounded_plus.svg -------------------------------------------------------------------------------- /frontend/src/assets/share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/assets/share.svg -------------------------------------------------------------------------------- /frontend/src/assets/tea.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/assets/tea.jpg -------------------------------------------------------------------------------- /frontend/src/assets/tea_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/assets/tea_2.jpg -------------------------------------------------------------------------------- /frontend/src/assets/team/akolade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/assets/team/akolade.png -------------------------------------------------------------------------------- /frontend/src/assets/team/balint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/assets/team/balint.png -------------------------------------------------------------------------------- /frontend/src/assets/team/chiara.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/assets/team/chiara.png -------------------------------------------------------------------------------- /frontend/src/assets/team/david.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/assets/team/david.png -------------------------------------------------------------------------------- /frontend/src/assets/team/fabian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/assets/team/fabian.png -------------------------------------------------------------------------------- /frontend/src/assets/team/fabian_katz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/assets/team/fabian_katz.png -------------------------------------------------------------------------------- /frontend/src/assets/team/ines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/assets/team/ines.png -------------------------------------------------------------------------------- /frontend/src/assets/team/laura.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/assets/team/laura.png -------------------------------------------------------------------------------- /frontend/src/assets/team/lea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/assets/team/lea.png -------------------------------------------------------------------------------- /frontend/src/assets/team/lisa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/assets/team/lisa.png -------------------------------------------------------------------------------- /frontend/src/assets/team/marco.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/assets/team/marco.png -------------------------------------------------------------------------------- /frontend/src/assets/team/moritz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/assets/team/moritz.png -------------------------------------------------------------------------------- /frontend/src/assets/team/naomi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/assets/team/naomi.png -------------------------------------------------------------------------------- /frontend/src/assets/team/nico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/assets/team/nico.png -------------------------------------------------------------------------------- /frontend/src/assets/team/nicolai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/assets/team/nicolai.png -------------------------------------------------------------------------------- /frontend/src/assets/team/philipp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/assets/team/philipp.png -------------------------------------------------------------------------------- /frontend/src/assets/team/silvia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/assets/team/silvia.png -------------------------------------------------------------------------------- /frontend/src/assets/team/thomas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/assets/team/thomas.png -------------------------------------------------------------------------------- /frontend/src/assets/team/volker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/assets/team/volker.png -------------------------------------------------------------------------------- /frontend/src/components/Button/Button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/components/Button/Button.js -------------------------------------------------------------------------------- /frontend/src/components/Button/Button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/components/Button/Button.scss -------------------------------------------------------------------------------- /frontend/src/components/ButtonWithImage/ButtonWithImage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/components/ButtonWithImage/ButtonWithImage.js -------------------------------------------------------------------------------- /frontend/src/components/ButtonWithImage/ButtonWithImage.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/components/ButtonWithImage/ButtonWithImage.scss -------------------------------------------------------------------------------- /frontend/src/components/CategorySelect/CategorySelect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/components/CategorySelect/CategorySelect.js -------------------------------------------------------------------------------- /frontend/src/components/CategorySelect/CategorySelect.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/components/CategorySelect/CategorySelect.scss -------------------------------------------------------------------------------- /frontend/src/components/ClickOut/ClickOut.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/components/ClickOut/ClickOut.js -------------------------------------------------------------------------------- /frontend/src/components/Dropdown/Dropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/components/Dropdown/Dropdown.js -------------------------------------------------------------------------------- /frontend/src/components/Dropdown/Dropdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/components/Dropdown/Dropdown.scss -------------------------------------------------------------------------------- /frontend/src/components/EnlistModal/EnlistModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/components/EnlistModal/EnlistModal.js -------------------------------------------------------------------------------- /frontend/src/components/EnlistModal/EnlistModal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/components/EnlistModal/EnlistModal.scss -------------------------------------------------------------------------------- /frontend/src/components/Fields/Fields.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/components/Fields/Fields.js -------------------------------------------------------------------------------- /frontend/src/components/Fields/Fields.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/components/Fields/Fields.scss -------------------------------------------------------------------------------- /frontend/src/components/Footer/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/components/Footer/Footer.js -------------------------------------------------------------------------------- /frontend/src/components/Footer/Footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/components/Footer/Footer.scss -------------------------------------------------------------------------------- /frontend/src/components/Form/Form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/components/Form/Form.js -------------------------------------------------------------------------------- /frontend/src/components/Form/Form.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/components/Form/Form.scss -------------------------------------------------------------------------------- /frontend/src/components/Header/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/components/Header/Header.js -------------------------------------------------------------------------------- /frontend/src/components/Header/Header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/components/Header/Header.scss -------------------------------------------------------------------------------- /frontend/src/components/InlineInputs/InlineInputs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/components/InlineInputs/InlineInputs.js -------------------------------------------------------------------------------- /frontend/src/components/Loader/Loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/components/Loader/Loader.js -------------------------------------------------------------------------------- /frontend/src/components/Loader/Loader.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/components/Loader/Loader.scss -------------------------------------------------------------------------------- /frontend/src/components/Map/Map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/components/Map/Map.js -------------------------------------------------------------------------------- /frontend/src/components/Map/Map.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/components/Map/Map.scss -------------------------------------------------------------------------------- /frontend/src/components/Menu/Menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/components/Menu/Menu.js -------------------------------------------------------------------------------- /frontend/src/components/Menu/Menu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/components/Menu/Menu.scss -------------------------------------------------------------------------------- /frontend/src/components/Modal/Modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/components/Modal/Modal.js -------------------------------------------------------------------------------- /frontend/src/components/Modal/Modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/components/Modal/Modal.scss -------------------------------------------------------------------------------- /frontend/src/components/OrderItem/OrderItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/components/OrderItem/OrderItem.js -------------------------------------------------------------------------------- /frontend/src/components/OrderItem/OrderItem.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/components/OrderItem/OrderItem.scss -------------------------------------------------------------------------------- /frontend/src/components/OrderTable/OrderTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/components/OrderTable/OrderTable.js -------------------------------------------------------------------------------- /frontend/src/components/OrderTable/OrderTable.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/components/OrderTable/OrderTable.scss -------------------------------------------------------------------------------- /frontend/src/components/PhotoSelector/PhotoSelector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/components/PhotoSelector/PhotoSelector.js -------------------------------------------------------------------------------- /frontend/src/components/PhotoSelector/PhotoSelector.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/components/PhotoSelector/PhotoSelector.scss -------------------------------------------------------------------------------- /frontend/src/components/PlacesSuggest/PlacesSuggest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/components/PlacesSuggest/PlacesSuggest.js -------------------------------------------------------------------------------- /frontend/src/components/PlacesSuggest/PlacesSuggest.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/components/PlacesSuggest/PlacesSuggest.scss -------------------------------------------------------------------------------- /frontend/src/components/PrivateRoute/PrivateRoute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/components/PrivateRoute/PrivateRoute.js -------------------------------------------------------------------------------- /frontend/src/components/ProductForm/ProductForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/components/ProductForm/ProductForm.js -------------------------------------------------------------------------------- /frontend/src/components/ProductGroup/ProductGroup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/components/ProductGroup/ProductGroup.js -------------------------------------------------------------------------------- /frontend/src/components/ProductGroup/ProductGroup.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/components/ProductGroup/ProductGroup.scss -------------------------------------------------------------------------------- /frontend/src/components/ProductItem/ProductItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/components/ProductItem/ProductItem.js -------------------------------------------------------------------------------- /frontend/src/components/ProductItem/ProductItem.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/components/ProductItem/ProductItem.scss -------------------------------------------------------------------------------- /frontend/src/components/ProductList/ProductList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/components/ProductList/ProductList.js -------------------------------------------------------------------------------- /frontend/src/components/ProductList/ProductList.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/components/ProductList/ProductList.scss -------------------------------------------------------------------------------- /frontend/src/components/Share/Share.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/components/Share/Share.js -------------------------------------------------------------------------------- /frontend/src/components/Share/Share.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/components/Share/Share.scss -------------------------------------------------------------------------------- /frontend/src/components/Stepper/Stepper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/components/Stepper/Stepper.js -------------------------------------------------------------------------------- /frontend/src/components/Stepper/Stepper.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/components/Stepper/Stepper.scss -------------------------------------------------------------------------------- /frontend/src/components/StoreList/StoreList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/components/StoreList/StoreList.js -------------------------------------------------------------------------------- /frontend/src/components/StoreList/StoreList.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/components/StoreList/StoreList.scss -------------------------------------------------------------------------------- /frontend/src/components/Tab/Tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/components/Tab/Tab.js -------------------------------------------------------------------------------- /frontend/src/components/Tab/Tab.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/components/Tab/Tab.scss -------------------------------------------------------------------------------- /frontend/src/components/Toast/Toast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/components/Toast/Toast.js -------------------------------------------------------------------------------- /frontend/src/components/Toast/Toast.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/components/Toast/Toast.scss -------------------------------------------------------------------------------- /frontend/src/components/ViewWrappers/ViewWrappers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/components/ViewWrappers/ViewWrappers.js -------------------------------------------------------------------------------- /frontend/src/components/ViewWrappers/ViewWrappers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/components/ViewWrappers/ViewWrappers.scss -------------------------------------------------------------------------------- /frontend/src/components/Yippey/Yippey.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/components/Yippey/Yippey.js -------------------------------------------------------------------------------- /frontend/src/components/Yippey/Yippey.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/components/Yippey/Yippey.scss -------------------------------------------------------------------------------- /frontend/src/context/CartContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/context/CartContext.js -------------------------------------------------------------------------------- /frontend/src/context/Logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/context/Logger.js -------------------------------------------------------------------------------- /frontend/src/context/StoreListContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/context/StoreListContext.js -------------------------------------------------------------------------------- /frontend/src/context/ToastContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/context/ToastContext.js -------------------------------------------------------------------------------- /frontend/src/context/UserContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/context/UserContext.js -------------------------------------------------------------------------------- /frontend/src/context/useCurrentLocation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/context/useCurrentLocation.js -------------------------------------------------------------------------------- /frontend/src/i18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/i18n.js -------------------------------------------------------------------------------- /frontend/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/index.js -------------------------------------------------------------------------------- /frontend/src/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/index.scss -------------------------------------------------------------------------------- /frontend/src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/serviceWorker.js -------------------------------------------------------------------------------- /frontend/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/setupTests.js -------------------------------------------------------------------------------- /frontend/src/shared/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/shared/api.js -------------------------------------------------------------------------------- /frontend/src/shared/apiDataTransform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/shared/apiDataTransform.js -------------------------------------------------------------------------------- /frontend/src/shared/businessImages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/shared/businessImages.js -------------------------------------------------------------------------------- /frontend/src/shared/mapStyles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/shared/mapStyles.json -------------------------------------------------------------------------------- /frontend/src/shared/useLocalStorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/shared/useLocalStorage.js -------------------------------------------------------------------------------- /frontend/src/stylebase/global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/stylebase/global.scss -------------------------------------------------------------------------------- /frontend/src/stylebase/type.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/stylebase/type.scss -------------------------------------------------------------------------------- /frontend/src/stylebase/utils.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/stylebase/utils.scss -------------------------------------------------------------------------------- /frontend/src/stylebase/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/stylebase/variables.scss -------------------------------------------------------------------------------- /frontend/src/textpages/About.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/textpages/About.scss -------------------------------------------------------------------------------- /frontend/src/textpages/about.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/textpages/about.js -------------------------------------------------------------------------------- /frontend/src/textpages/agb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/textpages/agb.js -------------------------------------------------------------------------------- /frontend/src/textpages/imprint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/textpages/imprint.js -------------------------------------------------------------------------------- /frontend/src/textpages/privacy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/textpages/privacy.js -------------------------------------------------------------------------------- /frontend/src/views/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/views/Home.js -------------------------------------------------------------------------------- /frontend/src/views/Home.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/views/Home.scss -------------------------------------------------------------------------------- /frontend/src/views/Login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/views/Login.js -------------------------------------------------------------------------------- /frontend/src/views/NewStore/BusinessForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/views/NewStore/BusinessForm.js -------------------------------------------------------------------------------- /frontend/src/views/NewStore/NewStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/views/NewStore/NewStore.js -------------------------------------------------------------------------------- /frontend/src/views/NewStore/NewStore.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/views/NewStore/NewStore.scss -------------------------------------------------------------------------------- /frontend/src/views/NewStore/PersonalForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/views/NewStore/PersonalForm.js -------------------------------------------------------------------------------- /frontend/src/views/NewStore/WaitingForVerify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/views/NewStore/WaitingForVerify.js -------------------------------------------------------------------------------- /frontend/src/views/NoMatch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/views/NoMatch.js -------------------------------------------------------------------------------- /frontend/src/views/Onboarding/FirstProduct.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/views/Onboarding/FirstProduct.js -------------------------------------------------------------------------------- /frontend/src/views/Onboarding/Onboarding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/views/Onboarding/Onboarding.js -------------------------------------------------------------------------------- /frontend/src/views/Onboarding/Onboarding.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/views/Onboarding/Onboarding.scss -------------------------------------------------------------------------------- /frontend/src/views/Onboarding/PhotoSelect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/views/Onboarding/PhotoSelect.js -------------------------------------------------------------------------------- /frontend/src/views/Onboarding/PhotoSelect.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/views/Onboarding/PhotoSelect.scss -------------------------------------------------------------------------------- /frontend/src/views/OrderForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/views/OrderForm.js -------------------------------------------------------------------------------- /frontend/src/views/OrderForm.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/views/OrderForm.scss -------------------------------------------------------------------------------- /frontend/src/views/Orders/Order.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/views/Orders/Order.js -------------------------------------------------------------------------------- /frontend/src/views/Orders/Order.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/views/Orders/Order.scss -------------------------------------------------------------------------------- /frontend/src/views/Orders/Orders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/views/Orders/Orders.js -------------------------------------------------------------------------------- /frontend/src/views/Orders/Orders.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/views/Orders/Orders.scss -------------------------------------------------------------------------------- /frontend/src/views/ProductCreateEdit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/views/ProductCreateEdit.js -------------------------------------------------------------------------------- /frontend/src/views/Store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/views/Store.js -------------------------------------------------------------------------------- /frontend/src/views/Store.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/views/Store.scss -------------------------------------------------------------------------------- /frontend/src/views/Stores.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/views/Stores.js -------------------------------------------------------------------------------- /frontend/src/views/TextPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/views/TextPage.js -------------------------------------------------------------------------------- /frontend/src/views/Verify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/src/views/Verify.js -------------------------------------------------------------------------------- /frontend/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/frontend/yarn.lock -------------------------------------------------------------------------------- /production.txt: -------------------------------------------------------------------------------- 1 | gunicorn==20.0.4 2 | psycopg2==2.8.5 3 | gevent==1.4.0 4 | -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covexit/covexit/HEAD/tox.ini --------------------------------------------------------------------------------