A Blockchain based application written in Python to run it's own crypto currency and exchange.
- Python3
python3 -m venv venv
Linux
source venv/bin/activate
Windows
venv\Scripts\activate.bat
All modules for this project are defined in the "requirements.txt" file and so in order to install all packages and dependencies for this project, do a pip install this way.
pip install -r requirements.txt
Create a database in mysql called genesys
CREATE DATABASE genesys;