Данная пошаговая инструкция поможет освоить основы на простом примере
Для справки
Сервер поднимался на Debian 8 c характеристиками:
CPU - 1 ядро x 500 МГц
| The following is OK for MODX 2.8.x and 3.x installations using git | |
| https://docs.modx.com/3.x/en/getting-started/installation/git#alternative-using-create-project | |
| git clone http://github.com/modxcms/revolution.git -b 3.x www | |
| curl -sS https://getcomposer.org/installer -o ./composer-setup.php | |
| php7.4 composer-setup.php | |
| php7.4 composer.phar | |
| php7.4 composer.phar install |
| <?php | |
| /* | |
| DONT FORGET TO DELETE THIS SCRIPT WHEN FINISHED! | |
| */ | |
| ini_set( 'display_errors', 1 ); | |
| error_reporting( E_ALL ); | |
| $from = 'webmaster@example.com'; |
| pragma solidity ^0.4.15; | |
| import './ERC20Basic.sol'; | |
| import './SafeMath.sol'; | |
| /** | |
| * @title Basic token | |
| * @dev Basic version of StandardToken, with no allowances. |