-
- Sempre buscar pela documentação oficial, este documento é um tutorial
que pode não te atender conforme tenha novas atualizações do processo de instalação. - As referências estão no final do documento.
- Sempre buscar pela documentação oficial, este documento é um tutorial
Install magento with composer
composer create-project --repository-url=https://repo.magento.com/ magento/project-community-edition <install-directory-name>
composer create-project --repository-url=https://repo.magento.com/ magento/project-enterprise-edition <install-directory-name>
Require the Cloud docker and ECE tools
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) | |
* @author Phuong LE <[email protected]> <@> | |
* @copyright Copyright (c) 2019 Menincode (http://www.menincode.com) | |
*/ | |
namespace MyNameSpace\Catalog\Setup; | |
These set of scripts are for Magento 2. For Magento 1, see this Gist.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
PREFIX="MY CLIENT -" | |
REPO_PATH='/home/ubuntu/server/client' | |
ACCEPTABLE_BRANCH="DEV" | |
COMPOSE_FILE="docker-compose.production.yml" | |
CLIENT_IMAGE="127.0.0.1:5000/mpc_nginx_client" |
- Make sure you test clearing this data in a non-production environment first.
- Always make backups before you lose data forever.
- Make sure you're
truncate
ing, notdrop
ing. - Probably a good idea to reindex everything via shell after mass deleting records
To expand on Jim's answer, Magento Support doesn't need the contents of these tables when they ask for a copy of your DB, so you could consider them non-essential.
This focuses on generating the certificates for loading local virtual hosts hosted on your computer, for development only.
Do not use self-signed certificates in production ! For online certificates, use Let's Encrypt instead (tutorial).
NewerOlder