├── .env.dist ├── .gitignore ├── core ├── bootstrap.php ├── cli │ ├── clear-tokens.php │ └── cron.php ├── composer.json ├── composer.lock ├── db │ ├── migrations │ │ ├── 20230814024249_files.php │ │ ├── 20230814054338_languages.php │ │ ├── 20230814055538_users.php │ │ ├── 20230814061716_categories.php │ │ ├── 20230814062903_products.php │ │ ├── 20230814071510_product_categories.php │ │ ├── 20230814071612_product_files.php │ │ ├── 20230814071649_product_links.php │ │ ├── 20230824022451_orders.php │ │ ├── 20230824022811_user_addresses.php │ │ ├── 20230904015111_carts.php │ │ └── 20230912022426_payments.php │ └── seeds │ │ ├── Categories.php │ │ ├── Languages.php │ │ ├── Orders.php │ │ ├── ProductFiles.php │ │ ├── ProductLinks.php │ │ ├── Products.php │ │ ├── UserRoles.php │ │ └── Users.php ├── phinx.php ├── routes.php ├── src │ ├── Controllers │ │ ├── Admin │ │ │ ├── Categories.php │ │ │ ├── Languages.php │ │ │ ├── Orders.php │ │ │ ├── Product │ │ │ │ ├── Categories.php │ │ │ │ ├── Files.php │ │ │ │ └── Links.php │ │ │ ├── Products.php │ │ │ ├── User │ │ │ │ ├── Addresses.php │ │ │ │ └── Orders.php │ │ │ ├── UserRoles.php │ │ │ └── Users.php │ │ ├── Image.php │ │ ├── Security │ │ │ ├── Activate.php │ │ │ ├── Login.php │ │ │ ├── Logout.php │ │ │ ├── Register.php │ │ │ └── Reset.php │ │ ├── Traits │ │ │ ├── FileModelController.php │ │ │ ├── ProductPropertyController.php │ │ │ ├── TranslateModelController.php │ │ │ └── WebCategoryPropertyController.php │ │ ├── User │ │ │ ├── Addresses.php │ │ │ ├── Orders.php │ │ │ └── Profile.php │ │ └── Web │ │ │ ├── Cart.php │ │ │ ├── Cart │ │ │ └── Products.php │ │ │ ├── Categories.php │ │ │ ├── Category │ │ │ ├── Filters.php │ │ │ └── Products.php │ │ │ ├── Filters.php │ │ │ ├── Orders.php │ │ │ ├── Products.php │ │ │ └── Resource.php │ ├── Interfaces │ │ └── Payment.php │ ├── Middlewares │ │ └── Auth.php │ ├── Models │ │ ├── Cart.php │ │ ├── CartProduct.php │ │ ├── Category.php │ │ ├── CategoryTranslation.php │ │ ├── File.php │ │ ├── Language.php │ │ ├── Order.php │ │ ├── OrderProduct.php │ │ ├── Payment.php │ │ ├── Product.php │ │ ├── ProductCategory.php │ │ ├── ProductFile.php │ │ ├── ProductLink.php │ │ ├── ProductTranslation.php │ │ ├── Traits │ │ │ ├── CompositeKey.php │ │ │ └── RankedModel.php │ │ ├── User.php │ │ ├── UserAddress.php │ │ ├── UserRole.php │ │ └── UserToken.php │ └── Services │ │ ├── CategoryFilter.php │ │ ├── Fenom.php │ │ ├── Mail.php │ │ ├── Raiffeisen.php │ │ └── Yookassa.php └── templates │ ├── email-order-new-admin.tpl │ ├── email-order-new-user.tpl │ ├── email-register.tpl │ ├── email-reset.tpl │ └── email.tpl ├── docker-compose.override.yml.dist ├── docker-compose.yml ├── docker ├── nginx │ └── default.conf.template └── php-fpm │ └── Dockerfile ├── frontend ├── .eslintignore ├── .eslintrc.js ├── .prettierrc ├── package.json ├── src │ ├── admin │ │ ├── assets │ │ │ ├── images │ │ │ │ ├── icon-lang-en.svg │ │ │ │ ├── icon-lang-ru.svg │ │ │ │ ├── logo-pixmill.svg │ │ │ │ └── logo-vesp.svg │ │ │ └── scss │ │ │ │ ├── _toasted.scss │ │ │ │ ├── _transitions.scss │ │ │ │ ├── _translations.scss │ │ │ │ ├── _tree.scss │ │ │ │ ├── _variables.scss │ │ │ │ └── index.scss │ │ ├── components │ │ │ ├── app │ │ │ │ ├── footer.vue │ │ │ │ ├── login.vue │ │ │ │ └── navbar.vue │ │ │ ├── categories │ │ │ │ ├── node.vue │ │ │ │ └── tree.vue │ │ │ ├── file-upload.vue │ │ │ ├── forms │ │ │ │ ├── category.vue │ │ │ │ ├── order.vue │ │ │ │ ├── product.vue │ │ │ │ ├── user-role.vue │ │ │ │ └── user.vue │ │ │ ├── inputs │ │ │ │ ├── alias.vue │ │ │ │ └── category.vue │ │ │ ├── lang-tabs.vue │ │ │ ├── order │ │ │ │ ├── address.vue │ │ │ │ ├── payment.vue │ │ │ │ └── products.vue │ │ │ └── product │ │ │ │ ├── categories.vue │ │ │ │ ├── gallery.vue │ │ │ │ ├── links.vue │ │ │ │ └── options.vue │ │ ├── layouts │ │ │ ├── default.vue │ │ │ └── error.vue │ │ ├── lexicons │ │ │ ├── en.js │ │ │ ├── index.js │ │ │ └── ru.js │ │ ├── mixins │ │ │ └── translations.js │ │ ├── nuxt.config.js │ │ ├── pages │ │ │ ├── categories.vue │ │ │ ├── categories │ │ │ │ ├── create.vue │ │ │ │ └── edit │ │ │ │ │ └── _id.vue │ │ │ ├── index.vue │ │ │ ├── orders.vue │ │ │ ├── orders │ │ │ │ ├── create.vue │ │ │ │ └── edit │ │ │ │ │ └── _id.vue │ │ │ ├── products.vue │ │ │ ├── products │ │ │ │ ├── create.vue │ │ │ │ └── edit │ │ │ │ │ └── _id.vue │ │ │ ├── user │ │ │ │ └── profile.vue │ │ │ ├── users.vue │ │ │ └── users │ │ │ │ ├── create.vue │ │ │ │ ├── edit │ │ │ │ └── _id.vue │ │ │ │ ├── roles.vue │ │ │ │ └── roles │ │ │ │ ├── create.vue │ │ │ │ └── edit │ │ │ │ └── _id.vue │ │ ├── plugins │ │ │ ├── menu.js │ │ │ └── utils.js │ │ └── store │ │ │ └── index.js │ └── site │ │ ├── assets │ │ ├── images │ │ │ ├── logo-pixmill.svg │ │ │ ├── logo-sbp.svg │ │ │ ├── logo-vesp.svg │ │ │ └── logo-yookassa.svg │ │ └── scss │ │ │ ├── _nouislider.scss │ │ │ ├── _toasted.scss │ │ │ ├── _variables.scss │ │ │ └── index.scss │ │ ├── components │ │ ├── app │ │ │ ├── footer.vue │ │ │ ├── login.vue │ │ │ └── navbar.vue │ │ ├── breadcrumbs.vue │ │ ├── cart.vue │ │ ├── category.vue │ │ ├── forms │ │ │ ├── address.vue │ │ │ ├── login.vue │ │ │ ├── order.vue │ │ │ ├── payment.vue │ │ │ ├── products.vue │ │ │ ├── register.vue │ │ │ └── reset.vue │ │ ├── inputs │ │ │ └── range-slider.vue │ │ ├── list-products-actions.vue │ │ ├── list-products-filters.vue │ │ ├── list-products.vue │ │ ├── order.vue │ │ └── product.vue │ │ ├── layouts │ │ ├── default.vue │ │ └── error.vue │ │ ├── lexicons │ │ ├── en.js │ │ ├── index.js │ │ └── ru.js │ │ ├── nuxt.config.js │ │ ├── pages │ │ ├── index.vue │ │ ├── orders │ │ │ └── _uuid.vue │ │ ├── products │ │ │ ├── _.vue │ │ │ └── index.vue │ │ ├── service │ │ │ └── confirm │ │ │ │ └── _username │ │ │ │ └── _code.vue │ │ ├── user.vue │ │ └── user │ │ │ ├── index.vue │ │ │ ├── orders.vue │ │ │ ├── orders │ │ │ └── view │ │ │ │ └── _uuid.vue │ │ │ └── profile.vue │ │ ├── plugins │ │ └── utils.js │ │ ├── static │ │ ├── email │ │ │ ├── logo.png │ │ │ └── logo@2x.png │ │ ├── favicon.ico │ │ └── favicons │ │ │ ├── android-chrome-192x192.png │ │ │ ├── android-chrome-512x512.png │ │ │ ├── apple-touch-icon.png │ │ │ ├── browserconfig.xml │ │ │ ├── favicon-16x16.png │ │ │ ├── favicon-32x32.png │ │ │ ├── favicon.ico │ │ │ ├── mstile-150x150.png │ │ │ ├── safari-pinned-tab.svg │ │ │ └── site.webmanifest │ │ └── store │ │ └── index.js ├── webpack.config.js └── yarn.lock └── www ├── .ht.access └── api.php /.env.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/.env.dist -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/.gitignore -------------------------------------------------------------------------------- /core/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/core/bootstrap.php -------------------------------------------------------------------------------- /core/cli/clear-tokens.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/core/cli/clear-tokens.php -------------------------------------------------------------------------------- /core/cli/cron.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/core/cli/cron.php -------------------------------------------------------------------------------- /core/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/core/composer.json -------------------------------------------------------------------------------- /core/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/core/composer.lock -------------------------------------------------------------------------------- /core/db/migrations/20230814024249_files.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/core/db/migrations/20230814024249_files.php -------------------------------------------------------------------------------- /core/db/migrations/20230814054338_languages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/core/db/migrations/20230814054338_languages.php -------------------------------------------------------------------------------- /core/db/migrations/20230814055538_users.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/core/db/migrations/20230814055538_users.php -------------------------------------------------------------------------------- /core/db/migrations/20230814061716_categories.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/core/db/migrations/20230814061716_categories.php -------------------------------------------------------------------------------- /core/db/migrations/20230814062903_products.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/core/db/migrations/20230814062903_products.php -------------------------------------------------------------------------------- /core/db/migrations/20230814071510_product_categories.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/core/db/migrations/20230814071510_product_categories.php -------------------------------------------------------------------------------- /core/db/migrations/20230814071612_product_files.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/core/db/migrations/20230814071612_product_files.php -------------------------------------------------------------------------------- /core/db/migrations/20230814071649_product_links.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/core/db/migrations/20230814071649_product_links.php -------------------------------------------------------------------------------- /core/db/migrations/20230824022451_orders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/core/db/migrations/20230824022451_orders.php -------------------------------------------------------------------------------- /core/db/migrations/20230824022811_user_addresses.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/core/db/migrations/20230824022811_user_addresses.php -------------------------------------------------------------------------------- /core/db/migrations/20230904015111_carts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/core/db/migrations/20230904015111_carts.php -------------------------------------------------------------------------------- /core/db/migrations/20230912022426_payments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/core/db/migrations/20230912022426_payments.php -------------------------------------------------------------------------------- /core/db/seeds/Categories.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/core/db/seeds/Categories.php -------------------------------------------------------------------------------- /core/db/seeds/Languages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/core/db/seeds/Languages.php -------------------------------------------------------------------------------- /core/db/seeds/Orders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/core/db/seeds/Orders.php -------------------------------------------------------------------------------- /core/db/seeds/ProductFiles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/core/db/seeds/ProductFiles.php -------------------------------------------------------------------------------- /core/db/seeds/ProductLinks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/core/db/seeds/ProductLinks.php -------------------------------------------------------------------------------- /core/db/seeds/Products.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/core/db/seeds/Products.php -------------------------------------------------------------------------------- /core/db/seeds/UserRoles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/core/db/seeds/UserRoles.php -------------------------------------------------------------------------------- /core/db/seeds/Users.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/core/db/seeds/Users.php -------------------------------------------------------------------------------- /core/phinx.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/core/phinx.php -------------------------------------------------------------------------------- /core/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/core/routes.php -------------------------------------------------------------------------------- /core/src/Controllers/Admin/Categories.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/core/src/Controllers/Admin/Categories.php -------------------------------------------------------------------------------- /core/src/Controllers/Admin/Languages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/core/src/Controllers/Admin/Languages.php -------------------------------------------------------------------------------- /core/src/Controllers/Admin/Orders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/core/src/Controllers/Admin/Orders.php -------------------------------------------------------------------------------- /core/src/Controllers/Admin/Product/Categories.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/core/src/Controllers/Admin/Product/Categories.php -------------------------------------------------------------------------------- /core/src/Controllers/Admin/Product/Files.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/core/src/Controllers/Admin/Product/Files.php -------------------------------------------------------------------------------- /core/src/Controllers/Admin/Product/Links.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/core/src/Controllers/Admin/Product/Links.php -------------------------------------------------------------------------------- /core/src/Controllers/Admin/Products.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/core/src/Controllers/Admin/Products.php -------------------------------------------------------------------------------- /core/src/Controllers/Admin/User/Addresses.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/core/src/Controllers/Admin/User/Addresses.php -------------------------------------------------------------------------------- /core/src/Controllers/Admin/User/Orders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/core/src/Controllers/Admin/User/Orders.php -------------------------------------------------------------------------------- /core/src/Controllers/Admin/UserRoles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/core/src/Controllers/Admin/UserRoles.php -------------------------------------------------------------------------------- /core/src/Controllers/Admin/Users.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/core/src/Controllers/Admin/Users.php -------------------------------------------------------------------------------- /core/src/Controllers/Image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/core/src/Controllers/Image.php -------------------------------------------------------------------------------- /core/src/Controllers/Security/Activate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/core/src/Controllers/Security/Activate.php -------------------------------------------------------------------------------- /core/src/Controllers/Security/Login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/core/src/Controllers/Security/Login.php -------------------------------------------------------------------------------- /core/src/Controllers/Security/Logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/core/src/Controllers/Security/Logout.php -------------------------------------------------------------------------------- /core/src/Controllers/Security/Register.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/core/src/Controllers/Security/Register.php -------------------------------------------------------------------------------- /core/src/Controllers/Security/Reset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/core/src/Controllers/Security/Reset.php -------------------------------------------------------------------------------- /core/src/Controllers/Traits/FileModelController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/core/src/Controllers/Traits/FileModelController.php -------------------------------------------------------------------------------- /core/src/Controllers/Traits/ProductPropertyController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/core/src/Controllers/Traits/ProductPropertyController.php -------------------------------------------------------------------------------- /core/src/Controllers/Traits/TranslateModelController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/core/src/Controllers/Traits/TranslateModelController.php -------------------------------------------------------------------------------- /core/src/Controllers/Traits/WebCategoryPropertyController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/core/src/Controllers/Traits/WebCategoryPropertyController.php -------------------------------------------------------------------------------- /core/src/Controllers/User/Addresses.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/core/src/Controllers/User/Addresses.php -------------------------------------------------------------------------------- /core/src/Controllers/User/Orders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/core/src/Controllers/User/Orders.php -------------------------------------------------------------------------------- /core/src/Controllers/User/Profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/core/src/Controllers/User/Profile.php -------------------------------------------------------------------------------- /core/src/Controllers/Web/Cart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/core/src/Controllers/Web/Cart.php -------------------------------------------------------------------------------- /core/src/Controllers/Web/Cart/Products.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/core/src/Controllers/Web/Cart/Products.php -------------------------------------------------------------------------------- /core/src/Controllers/Web/Categories.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/core/src/Controllers/Web/Categories.php -------------------------------------------------------------------------------- /core/src/Controllers/Web/Category/Filters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/core/src/Controllers/Web/Category/Filters.php -------------------------------------------------------------------------------- /core/src/Controllers/Web/Category/Products.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/core/src/Controllers/Web/Category/Products.php -------------------------------------------------------------------------------- /core/src/Controllers/Web/Filters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/core/src/Controllers/Web/Filters.php -------------------------------------------------------------------------------- /core/src/Controllers/Web/Orders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/core/src/Controllers/Web/Orders.php -------------------------------------------------------------------------------- /core/src/Controllers/Web/Products.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/core/src/Controllers/Web/Products.php -------------------------------------------------------------------------------- /core/src/Controllers/Web/Resource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/core/src/Controllers/Web/Resource.php -------------------------------------------------------------------------------- /core/src/Interfaces/Payment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/core/src/Interfaces/Payment.php -------------------------------------------------------------------------------- /core/src/Middlewares/Auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/core/src/Middlewares/Auth.php -------------------------------------------------------------------------------- /core/src/Models/Cart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/core/src/Models/Cart.php -------------------------------------------------------------------------------- /core/src/Models/CartProduct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/core/src/Models/CartProduct.php -------------------------------------------------------------------------------- /core/src/Models/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/core/src/Models/Category.php -------------------------------------------------------------------------------- /core/src/Models/CategoryTranslation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/core/src/Models/CategoryTranslation.php -------------------------------------------------------------------------------- /core/src/Models/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/core/src/Models/File.php -------------------------------------------------------------------------------- /core/src/Models/Language.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/core/src/Models/Language.php -------------------------------------------------------------------------------- /core/src/Models/Order.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/core/src/Models/Order.php -------------------------------------------------------------------------------- /core/src/Models/OrderProduct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/core/src/Models/OrderProduct.php -------------------------------------------------------------------------------- /core/src/Models/Payment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/core/src/Models/Payment.php -------------------------------------------------------------------------------- /core/src/Models/Product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/core/src/Models/Product.php -------------------------------------------------------------------------------- /core/src/Models/ProductCategory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/core/src/Models/ProductCategory.php -------------------------------------------------------------------------------- /core/src/Models/ProductFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/core/src/Models/ProductFile.php -------------------------------------------------------------------------------- /core/src/Models/ProductLink.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/core/src/Models/ProductLink.php -------------------------------------------------------------------------------- /core/src/Models/ProductTranslation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/core/src/Models/ProductTranslation.php -------------------------------------------------------------------------------- /core/src/Models/Traits/CompositeKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/core/src/Models/Traits/CompositeKey.php -------------------------------------------------------------------------------- /core/src/Models/Traits/RankedModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/core/src/Models/Traits/RankedModel.php -------------------------------------------------------------------------------- /core/src/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/core/src/Models/User.php -------------------------------------------------------------------------------- /core/src/Models/UserAddress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/core/src/Models/UserAddress.php -------------------------------------------------------------------------------- /core/src/Models/UserRole.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/core/src/Models/UserRole.php -------------------------------------------------------------------------------- /core/src/Models/UserToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/core/src/Models/UserToken.php -------------------------------------------------------------------------------- /core/src/Services/CategoryFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/core/src/Services/CategoryFilter.php -------------------------------------------------------------------------------- /core/src/Services/Fenom.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/core/src/Services/Fenom.php -------------------------------------------------------------------------------- /core/src/Services/Mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/core/src/Services/Mail.php -------------------------------------------------------------------------------- /core/src/Services/Raiffeisen.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/core/src/Services/Raiffeisen.php -------------------------------------------------------------------------------- /core/src/Services/Yookassa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/core/src/Services/Yookassa.php -------------------------------------------------------------------------------- /core/templates/email-order-new-admin.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/core/templates/email-order-new-admin.tpl -------------------------------------------------------------------------------- /core/templates/email-order-new-user.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/core/templates/email-order-new-user.tpl -------------------------------------------------------------------------------- /core/templates/email-register.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/core/templates/email-register.tpl -------------------------------------------------------------------------------- /core/templates/email-reset.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/core/templates/email-reset.tpl -------------------------------------------------------------------------------- /core/templates/email.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/core/templates/email.tpl -------------------------------------------------------------------------------- /docker-compose.override.yml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/docker-compose.override.yml.dist -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker/nginx/default.conf.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/docker/nginx/default.conf.template -------------------------------------------------------------------------------- /docker/php-fpm/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/docker/php-fpm/Dockerfile -------------------------------------------------------------------------------- /frontend/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/.eslintignore -------------------------------------------------------------------------------- /frontend/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/.eslintrc.js -------------------------------------------------------------------------------- /frontend/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/.prettierrc -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/src/admin/assets/images/icon-lang-en.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/admin/assets/images/icon-lang-en.svg -------------------------------------------------------------------------------- /frontend/src/admin/assets/images/icon-lang-ru.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/admin/assets/images/icon-lang-ru.svg -------------------------------------------------------------------------------- /frontend/src/admin/assets/images/logo-pixmill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/admin/assets/images/logo-pixmill.svg -------------------------------------------------------------------------------- /frontend/src/admin/assets/images/logo-vesp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/admin/assets/images/logo-vesp.svg -------------------------------------------------------------------------------- /frontend/src/admin/assets/scss/_toasted.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/admin/assets/scss/_toasted.scss -------------------------------------------------------------------------------- /frontend/src/admin/assets/scss/_transitions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/admin/assets/scss/_transitions.scss -------------------------------------------------------------------------------- /frontend/src/admin/assets/scss/_translations.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/admin/assets/scss/_translations.scss -------------------------------------------------------------------------------- /frontend/src/admin/assets/scss/_tree.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/admin/assets/scss/_tree.scss -------------------------------------------------------------------------------- /frontend/src/admin/assets/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/admin/assets/scss/_variables.scss -------------------------------------------------------------------------------- /frontend/src/admin/assets/scss/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/admin/assets/scss/index.scss -------------------------------------------------------------------------------- /frontend/src/admin/components/app/footer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/admin/components/app/footer.vue -------------------------------------------------------------------------------- /frontend/src/admin/components/app/login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/admin/components/app/login.vue -------------------------------------------------------------------------------- /frontend/src/admin/components/app/navbar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/admin/components/app/navbar.vue -------------------------------------------------------------------------------- /frontend/src/admin/components/categories/node.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/admin/components/categories/node.vue -------------------------------------------------------------------------------- /frontend/src/admin/components/categories/tree.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/admin/components/categories/tree.vue -------------------------------------------------------------------------------- /frontend/src/admin/components/file-upload.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/admin/components/file-upload.vue -------------------------------------------------------------------------------- /frontend/src/admin/components/forms/category.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/admin/components/forms/category.vue -------------------------------------------------------------------------------- /frontend/src/admin/components/forms/order.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/admin/components/forms/order.vue -------------------------------------------------------------------------------- /frontend/src/admin/components/forms/product.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/admin/components/forms/product.vue -------------------------------------------------------------------------------- /frontend/src/admin/components/forms/user-role.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/admin/components/forms/user-role.vue -------------------------------------------------------------------------------- /frontend/src/admin/components/forms/user.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/admin/components/forms/user.vue -------------------------------------------------------------------------------- /frontend/src/admin/components/inputs/alias.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/admin/components/inputs/alias.vue -------------------------------------------------------------------------------- /frontend/src/admin/components/inputs/category.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/admin/components/inputs/category.vue -------------------------------------------------------------------------------- /frontend/src/admin/components/lang-tabs.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/admin/components/lang-tabs.vue -------------------------------------------------------------------------------- /frontend/src/admin/components/order/address.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/admin/components/order/address.vue -------------------------------------------------------------------------------- /frontend/src/admin/components/order/payment.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/admin/components/order/payment.vue -------------------------------------------------------------------------------- /frontend/src/admin/components/order/products.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/admin/components/order/products.vue -------------------------------------------------------------------------------- /frontend/src/admin/components/product/categories.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/admin/components/product/categories.vue -------------------------------------------------------------------------------- /frontend/src/admin/components/product/gallery.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/admin/components/product/gallery.vue -------------------------------------------------------------------------------- /frontend/src/admin/components/product/links.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/admin/components/product/links.vue -------------------------------------------------------------------------------- /frontend/src/admin/components/product/options.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/admin/components/product/options.vue -------------------------------------------------------------------------------- /frontend/src/admin/layouts/default.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/admin/layouts/default.vue -------------------------------------------------------------------------------- /frontend/src/admin/layouts/error.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/admin/layouts/error.vue -------------------------------------------------------------------------------- /frontend/src/admin/lexicons/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/admin/lexicons/en.js -------------------------------------------------------------------------------- /frontend/src/admin/lexicons/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/admin/lexicons/index.js -------------------------------------------------------------------------------- /frontend/src/admin/lexicons/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/admin/lexicons/ru.js -------------------------------------------------------------------------------- /frontend/src/admin/mixins/translations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/admin/mixins/translations.js -------------------------------------------------------------------------------- /frontend/src/admin/nuxt.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/admin/nuxt.config.js -------------------------------------------------------------------------------- /frontend/src/admin/pages/categories.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/admin/pages/categories.vue -------------------------------------------------------------------------------- /frontend/src/admin/pages/categories/create.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/admin/pages/categories/create.vue -------------------------------------------------------------------------------- /frontend/src/admin/pages/categories/edit/_id.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/admin/pages/categories/edit/_id.vue -------------------------------------------------------------------------------- /frontend/src/admin/pages/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/admin/pages/index.vue -------------------------------------------------------------------------------- /frontend/src/admin/pages/orders.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/admin/pages/orders.vue -------------------------------------------------------------------------------- /frontend/src/admin/pages/orders/create.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/admin/pages/orders/create.vue -------------------------------------------------------------------------------- /frontend/src/admin/pages/orders/edit/_id.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/admin/pages/orders/edit/_id.vue -------------------------------------------------------------------------------- /frontend/src/admin/pages/products.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/admin/pages/products.vue -------------------------------------------------------------------------------- /frontend/src/admin/pages/products/create.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/admin/pages/products/create.vue -------------------------------------------------------------------------------- /frontend/src/admin/pages/products/edit/_id.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/admin/pages/products/edit/_id.vue -------------------------------------------------------------------------------- /frontend/src/admin/pages/user/profile.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/admin/pages/user/profile.vue -------------------------------------------------------------------------------- /frontend/src/admin/pages/users.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/admin/pages/users.vue -------------------------------------------------------------------------------- /frontend/src/admin/pages/users/create.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/admin/pages/users/create.vue -------------------------------------------------------------------------------- /frontend/src/admin/pages/users/edit/_id.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/admin/pages/users/edit/_id.vue -------------------------------------------------------------------------------- /frontend/src/admin/pages/users/roles.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/admin/pages/users/roles.vue -------------------------------------------------------------------------------- /frontend/src/admin/pages/users/roles/create.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/admin/pages/users/roles/create.vue -------------------------------------------------------------------------------- /frontend/src/admin/pages/users/roles/edit/_id.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/admin/pages/users/roles/edit/_id.vue -------------------------------------------------------------------------------- /frontend/src/admin/plugins/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/admin/plugins/menu.js -------------------------------------------------------------------------------- /frontend/src/admin/plugins/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/admin/plugins/utils.js -------------------------------------------------------------------------------- /frontend/src/admin/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/admin/store/index.js -------------------------------------------------------------------------------- /frontend/src/site/assets/images/logo-pixmill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/site/assets/images/logo-pixmill.svg -------------------------------------------------------------------------------- /frontend/src/site/assets/images/logo-sbp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/site/assets/images/logo-sbp.svg -------------------------------------------------------------------------------- /frontend/src/site/assets/images/logo-vesp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/site/assets/images/logo-vesp.svg -------------------------------------------------------------------------------- /frontend/src/site/assets/images/logo-yookassa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/site/assets/images/logo-yookassa.svg -------------------------------------------------------------------------------- /frontend/src/site/assets/scss/_nouislider.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/site/assets/scss/_nouislider.scss -------------------------------------------------------------------------------- /frontend/src/site/assets/scss/_toasted.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/site/assets/scss/_toasted.scss -------------------------------------------------------------------------------- /frontend/src/site/assets/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/site/assets/scss/_variables.scss -------------------------------------------------------------------------------- /frontend/src/site/assets/scss/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/site/assets/scss/index.scss -------------------------------------------------------------------------------- /frontend/src/site/components/app/footer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/site/components/app/footer.vue -------------------------------------------------------------------------------- /frontend/src/site/components/app/login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/site/components/app/login.vue -------------------------------------------------------------------------------- /frontend/src/site/components/app/navbar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/site/components/app/navbar.vue -------------------------------------------------------------------------------- /frontend/src/site/components/breadcrumbs.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/site/components/breadcrumbs.vue -------------------------------------------------------------------------------- /frontend/src/site/components/cart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/site/components/cart.vue -------------------------------------------------------------------------------- /frontend/src/site/components/category.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/site/components/category.vue -------------------------------------------------------------------------------- /frontend/src/site/components/forms/address.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/site/components/forms/address.vue -------------------------------------------------------------------------------- /frontend/src/site/components/forms/login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/site/components/forms/login.vue -------------------------------------------------------------------------------- /frontend/src/site/components/forms/order.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/site/components/forms/order.vue -------------------------------------------------------------------------------- /frontend/src/site/components/forms/payment.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/site/components/forms/payment.vue -------------------------------------------------------------------------------- /frontend/src/site/components/forms/products.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/site/components/forms/products.vue -------------------------------------------------------------------------------- /frontend/src/site/components/forms/register.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/site/components/forms/register.vue -------------------------------------------------------------------------------- /frontend/src/site/components/forms/reset.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/site/components/forms/reset.vue -------------------------------------------------------------------------------- /frontend/src/site/components/inputs/range-slider.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/site/components/inputs/range-slider.vue -------------------------------------------------------------------------------- /frontend/src/site/components/list-products-actions.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/site/components/list-products-actions.vue -------------------------------------------------------------------------------- /frontend/src/site/components/list-products-filters.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/site/components/list-products-filters.vue -------------------------------------------------------------------------------- /frontend/src/site/components/list-products.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/site/components/list-products.vue -------------------------------------------------------------------------------- /frontend/src/site/components/order.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/site/components/order.vue -------------------------------------------------------------------------------- /frontend/src/site/components/product.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/site/components/product.vue -------------------------------------------------------------------------------- /frontend/src/site/layouts/default.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/site/layouts/default.vue -------------------------------------------------------------------------------- /frontend/src/site/layouts/error.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/site/layouts/error.vue -------------------------------------------------------------------------------- /frontend/src/site/lexicons/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/site/lexicons/en.js -------------------------------------------------------------------------------- /frontend/src/site/lexicons/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/site/lexicons/index.js -------------------------------------------------------------------------------- /frontend/src/site/lexicons/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/site/lexicons/ru.js -------------------------------------------------------------------------------- /frontend/src/site/nuxt.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/site/nuxt.config.js -------------------------------------------------------------------------------- /frontend/src/site/pages/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/site/pages/index.vue -------------------------------------------------------------------------------- /frontend/src/site/pages/orders/_uuid.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/site/pages/orders/_uuid.vue -------------------------------------------------------------------------------- /frontend/src/site/pages/products/_.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/site/pages/products/_.vue -------------------------------------------------------------------------------- /frontend/src/site/pages/products/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/site/pages/products/index.vue -------------------------------------------------------------------------------- /frontend/src/site/pages/service/confirm/_username/_code.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/site/pages/service/confirm/_username/_code.vue -------------------------------------------------------------------------------- /frontend/src/site/pages/user.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/site/pages/user.vue -------------------------------------------------------------------------------- /frontend/src/site/pages/user/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/site/pages/user/index.vue -------------------------------------------------------------------------------- /frontend/src/site/pages/user/orders.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/site/pages/user/orders.vue -------------------------------------------------------------------------------- /frontend/src/site/pages/user/orders/view/_uuid.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/site/pages/user/orders/view/_uuid.vue -------------------------------------------------------------------------------- /frontend/src/site/pages/user/profile.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/site/pages/user/profile.vue -------------------------------------------------------------------------------- /frontend/src/site/plugins/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/site/plugins/utils.js -------------------------------------------------------------------------------- /frontend/src/site/static/email/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/site/static/email/logo.png -------------------------------------------------------------------------------- /frontend/src/site/static/email/logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/site/static/email/logo@2x.png -------------------------------------------------------------------------------- /frontend/src/site/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/site/static/favicon.ico -------------------------------------------------------------------------------- /frontend/src/site/static/favicons/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/site/static/favicons/android-chrome-192x192.png -------------------------------------------------------------------------------- /frontend/src/site/static/favicons/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/site/static/favicons/android-chrome-512x512.png -------------------------------------------------------------------------------- /frontend/src/site/static/favicons/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/site/static/favicons/apple-touch-icon.png -------------------------------------------------------------------------------- /frontend/src/site/static/favicons/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/site/static/favicons/browserconfig.xml -------------------------------------------------------------------------------- /frontend/src/site/static/favicons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/site/static/favicons/favicon-16x16.png -------------------------------------------------------------------------------- /frontend/src/site/static/favicons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/site/static/favicons/favicon-32x32.png -------------------------------------------------------------------------------- /frontend/src/site/static/favicons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/site/static/favicons/favicon.ico -------------------------------------------------------------------------------- /frontend/src/site/static/favicons/mstile-150x150.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/site/static/favicons/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/site/static/favicons/safari-pinned-tab.svg -------------------------------------------------------------------------------- /frontend/src/site/static/favicons/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/site/static/favicons/site.webmanifest -------------------------------------------------------------------------------- /frontend/src/site/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/src/site/store/index.js -------------------------------------------------------------------------------- /frontend/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/webpack.config.js -------------------------------------------------------------------------------- /frontend/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/frontend/yarn.lock -------------------------------------------------------------------------------- /www/.ht.access: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/www/.ht.access -------------------------------------------------------------------------------- /www/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/vesp-shop/HEAD/www/api.php --------------------------------------------------------------------------------