Go to this link and follow the instructions. https://getcomposer.org/doc/00-intro.md#installation-windows (this is not a guide to install composer :))
C:\Users\username>composer -V
Composer version xxxxxxxxxx
Go to this link and follow the instructions. https://getcomposer.org/doc/00-intro.md#installation-windows (this is not a guide to install composer :))
C:\Users\username>composer -V
Composer version xxxxxxxxxx
| wget -r -nc -p --html-extension -k site.com |
| cat ~/.ssh/id_rsa.pub | ssh user@droplet-ip "cat >> ~/.ssh/authorized_keys" |
| # Don't show errors which contain full path diclosure (FPD) | |
| # Use that line only if PHP is installed as a module and not per CGI | |
| # try using a php.ini in that case. | |
| # Change mod_php5.c to mod_php7.c if you are running PHP7 | |
| <IfModule mod_php5.c> | |
| php_flag display_errors Off | |
| </IfModule> | |
| # Don't list directories | |
| <IfModule mod_autoindex.c> |
| # Colours | |
| git config --global color.status auto | |
| git config --global color.branch auto | |
| git config --global color.diff auto | |
| # Short-hand aliases | |
| git config --global alias.st status | |
| git config --global alias.ci commit | |
| git config --global alias.co checkout | |
| git config --global alias.br branch |
| Find where your composer file is which composer | |
| For me, it was in | |
| /c/Users/USERNAME/AppData/Roaming/Composer/vendor/bin/composer | |
| Open a terminal in that directory | |
| follow the steps here - Installastion Steps | |
| composer -V should now return 2.x |
| REMIX EXAMPLE PROJECT | |
| Remix example project is present when Remix loads very first time or there are no files existing in the File Explorer. | |
| It contains 3 directories: | |
| 1. 'contracts': Holds three contracts with different complexity level, denoted with number prefix in file name. | |
| 2. 'scripts': Holds two scripts to deploy a contract. It is explained below. | |
| 3. 'tests': Contains one test file for 'Ballot' contract with unit tests in Solidity. | |
| SCRIPTS |