magento 2.4.3 setup tutorial
composer create-project --repository-url=https://repo.magento.com/ magento/project-community-edition new_project_name
// using php -d memory_limit = -1 => for fix bug limit memory of php
php -d memory_limit=-1  bin/magento setup:install 
--base-url=http://localhost/magento243 
--db-host=localhost 
--db-name=magento243 
--db-user=root 
--admin-firstname=vi 
--admin-lastname=Ly 
[email protected] 
--admin-user=vilh 
--admin-password=admin111 
--language=vi_VN 
--currency=VND 
--timezone=Asia/Bangkok 
--use-rewrites=1
