BETCOIN
BET is a digital currency created with python and flask with features of a centralized bank, wallet system, and open transaction history of all the users in the network including one to one deposit. It also has a betting (gambling) system and some other games will be added in future.
How to run it
- Download python
- clone this repo:
git clone https://github.com/ujjwal-kr/betcoin.git
- run
python3 -m venv venv
for UNIX andpy -3 -m venv venv
for windows. - run
. venv/bin/activate
for UNIX andvenv\Scripts\activate
for windows. - run
pip install flask
- run
pip install flask_sqlalchemy
- run
export FLASK_ENV=development
for UNIX andset FLASK_ENV=development
for windows (CMD)$env:FLASK_ENV = "development"
(PowerShell) to enter debug mode. - run
flask run