Skip to content

Commit

Permalink
DOC: Adding a runner
Browse files Browse the repository at this point in the history
  • Loading branch information
Manuel Eusebio de Paz Carmona committed Dec 9, 2021
1 parent 6a93a19 commit a5fcff3
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
SHELL=/bin/bash

create-env:
virtualenv .venv
source .venv/bin/activate
make install-dependencies

install-dependencies:
pip install -r requirements.txt

uninstall-dependencies:
pip uninstall -r requirements.txt

bot1:
python RL-Bitcoin-trading-bot_1/RL-Bitcoin-trading-bot_1.py

bot2:
python RL-Bitcoin-trading-bot_2/RL-Bitcoin-trading-bot_2.py

bot3:
python RL-Bitcoin-trading-bot_3/RL-Bitcoin-trading-bot_3.py

bot4:
python RL-Bitcoin-trading-bot_4/RL-Bitcoin-trading-bot_4.py

bot5:
python RL-Bitcoin-trading-bot_5/RL-Bitcoin-trading-bot_5.py

bot6:
python RL-Bitcoin-trading-bot_6/RL-Bitcoin-trading-bot_6.py

bot7:
python RL-Bitcoin-trading-bot_7/RL-Bitcoin-trading-bot_7.py

0 comments on commit a5fcff3

Please sign in to comment.