Installation: https://fedoramagazine.org/docker-and-fedora-32/
Fixing problem with file permission:
- Open /etc/selinux/config
- Edit the SELINUX key to permissive
- reboot system
<?xml version="1.0"?> | |
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd"> | |
<body> | |
<referenceBlock name="catalog.compare.sidebar" remove="true" /> | |
<referenceBlock name="related.product.addto.compare" remove="true" /> | |
<referenceBlock name="upsell.product.addto.compare" remove="true" /> | |
<referenceBlock name="category.product.addto.compare" remove="true" /> | |
<referenceBlock name="related.product.addto.compare" remove="true" /> | |
<referenceBlock name="upsell.product.addto.compare" remove="true" /> | |
<referenceBlock name="crosssell.product.addto.compare" remove="true" /> |
Installation: https://fedoramagazine.org/docker-and-fedora-32/
Fixing problem with file permission:
To fix the error when trying to share the whole screen in the Google Meet/Hangouts you need to edit this file
sudo vi /etc/gdm/custom.conf
un-commenting this line WaylandEnable=false
define([ | |
'mage/template', | |
'text!Magento_Theme/templates/product-card-template.html' | |
], function( | |
mageTemplate, | |
productCardTemplate | |
) { | |
const productElement = document.getElementById('product-container'); | |
productElement && (productElement.innerHTML = mageTemplate(productCardTemplate, { |
Install the Apollo Boost for requireJS
# The routes of the project. | |
# | |
# Each route describes how an incoming URL is going to be processed. | |
"http://{all}/": | |
type: upstream | |
upstream: "mymagento:http" | |
redirects: | |
paths: | |
"^/customer/account/forgotpassword/.*": { to: "http://{all}/", regexp: true } |
#!/usr/bin/env bash | |
##################################################### | |
# # | |
# SYSTEM VALIDATION # | |
# # | |
##################################################### | |
##################################################### |
#!/bin/bash | |
PID=$(id -u $USER); | |
GID=$(id -g $USER); | |
mkdir -p ~/.composer/cache; | |
docker run --rm \ | |
-v $(pwd):/app \ | |
-v ~/.composer/cache:/var/www/.composer/cache \ |
parse_git_branch() { | |
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/ (\1)/' | |
} | |
PS1='[\u@\h \W]$(parse_git_branch)\$ ' |
System.config({ | |
"paths": { | |
"@/*": "./src/*" | |
} | |
}); |