A Python/Vue.js crypto portfolio management and trade automation program with support for 10 exchanges.
Powered by ccxt.
You will need some developer tools to get up and running. Please install git and docker.
You will also need python3, pip, and pycrypto
installed locally. Once you have pip
installed, you can run:
pip install pycrypto
git clone https://github.com/coincubellc/coincube.git
Change to root directory
cd coincube
git submodule update --init --recursive
cd back
- Visit Coin Market Cap and signup for their free Basic API.
- Paste the API key into lines 46 and 72 in
docker-compose.yml
. The key should be a string:CMC_API_KEY: 'your_CMC_API_key_here'
. - Save
docker-compose.yml
.
If you plan to run this software in a production environment, you may wish to securely generate a new base64 encoded RSA Private key.
- From inside of the
back
folder, generate a new seedpython generate_vault_seed.py
which will generate a new seed. - Paste the entire encoded key as a string on lines 18 and 113 of
docker-compose.yml
in the rootcoincube
directory. - Save
docker-compose.yml
.
From inside of the root coincube
directory, build/run the Docker container(s):
docker-compose build
Run the Docker container(s):
docker-compose up
The first time you run docker-compose up
you will need to wait for the database to be populated. This should take 10-15 minutes.
Once application is running and the database is populated, navigate to: http://0.0.0.0:8080 in your browser.
TCP/IP
Name: local
Host: 127.0.0.1
Username: admin
Password: 4pa1z&ABK78R
Database: coincube
Port: 3306