From 419f6ea2cad0b51520f3e0d9f11538a183557ef9 Mon Sep 17 00:00:00 2001 From: gcarq Date: Fri, 12 May 2017 19:26:40 +0200 Subject: [PATCH] update README; make main.py executable --- README.md | 11 ++++++++++- main.py | 0 2 files changed, 10 insertions(+), 1 deletion(-) mode change 100644 => 100755 main.py diff --git a/README.md b/README.md index 07a437529..50a774029 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,12 @@ # marginbot -Cryptocurrency micro trading bot \ No newline at end of file +Cryptocurrency micro trading bot + +``` +cd marginbot/ +cp config.json.example config.json +python -m venv .venv +source .venv/bin/activate +pip install -r requirements.txt +./main.py +``` diff --git a/main.py b/main.py old mode 100644 new mode 100755