Live version: https://trade.multicoins.org/
Step-by-step install instructions:
- Register on the VPS hosting like this https://m.do.co/c/1ece5d76d5cd
- Create "Droplet" Ubuntu 16 x64 / 1GB / 1vCPU / 25 GB SSD
- Log in to Droplet over SSH (You will receive a email with IP, username and password) 4
sudo apt-get update
sudo apt-get install build-essential libssl-dev curl -y
curl -sL https://raw.githubusercontent.com/creationix/nvm/v0.31.0/install.sh -o install_nvm.sh
bash install_nvm.sh
sudo reboot
nvm install 8.0.0
git clone https://github.com/3s3s/opentrade.git
cd opentrade
sudo npm install
Here is an example of the file ~/opentrade/server/modules/private_constants.js Edit with your configs.
'use strict';
exports.recaptcha_priv_key = 'YOUR_GOOGLE_RECAPTCHA_PRIVATE_KEY';
exports.password_private_suffix = 'LONG_RANDOM_STRING1';
exports.SSL_KEY = '../ssl_certificates/privkey.pem'; //change to your ssl certificates private key
exports.SSL_CERT = '../ssl_certificates/fullchain.pem'; //change to your ssl certificates fullchain
exports.walletspassphrase = {
'MC' : 'LONG_RANDOM_STRING2',
'BTC' : 'LONG_RANDOM_STRING3',
'DOGE' : 'LONG_RANDOM_STRING4'
};
After, you can run exchange
cd ~/opentrade/server
sudo node main.js
In your browser address bar, type https://127.0.0.1:40443 You will see OpenTrade.
The first registered user will be exchange administrator.
< 617F div class="markdown-heading" dir="auto">