Skip to content
This repository has been archived by the owner on Feb 16, 2020. It is now read-only.

Common install issue #2599

Merged
merged 40 commits into from
Oct 20, 2018
Merged
Show file tree
Hide file tree
Changes from 39 commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
16f57bf
v0.6 support for bitx (aka Luno)
hiyan Jul 19, 2018
bbf8c9c
v0.6 support for bitx (aka Luno)
hiyan Jul 19, 2018
248a393
remove log
hiyan Jul 20, 2018
5bd8595
Merge pull request #1 from askmike/develop
hiyan Jul 23, 2018
734b8c0
move dependency to gb
hiyan Jul 23, 2018
90fd81d
rename bitx to luno
hiyan Jul 23, 2018
0d4c31f
rename bitx to luno
hiyan Jul 23, 2018
4b5d09f
temp fix simultaneous advice error
hiyan Jul 24, 2018
4b6846b
Merge pull request #2 from askmike/develop
hiyan Jul 26, 2018
a63f616
Merge pull request #3 from hiyan/develop
hiyan Jul 26, 2018
f576abe
Merge pull request #4 from askmike/develop
hiyan Jul 27, 2018
1f29ad4
Merge pull request #5 from hiyan/develop
hiyan Jul 27, 2018
81a8f5c
Merge pull request #6 from askmike/develop
hiyan Aug 3, 2018
522f359
Merge pull request #7 from hiyan/develop
hiyan Aug 3, 2018
06acc7d
- re-add logging
hiyan Aug 8, 2018
844f271
update
hiyan Aug 8, 2018
28735e0
update
hiyan Aug 8, 2018
abc7519
update
hiyan Aug 8, 2018
a5855c2
revert 4b5d09f
hiyan Aug 8, 2018
67064b5
Merge pull request #8 from hiyan/gekkowk
hiyan Aug 8, 2018
0b92e40
Merge pull request #9 from askmike/develop
hiyan Aug 8, 2018
f93d435
Merge pull request #10 from hiyan/develop
hiyan Aug 8, 2018
1af6db5
Merge pull request #11 from askmike/develop
hiyan Aug 14, 2018
5161000
Merge pull request #12 from hiyan/develop
hiyan Aug 14, 2018
441cb49
Merge pull request #13 from askmike/develop
hiyan Aug 20, 2018
3a6fc0b
Merge pull request #14 from hiyan/develop
hiyan Aug 20, 2018
e982c24
Merge pull request #15 from askmike/develop
hiyan Aug 28, 2018
2a6fa21
Merge pull request #16 from hiyan/develop
hiyan Aug 28, 2018
53dfb45
Merge pull request #17 from askmike/develop
hiyan Sep 3, 2018
fe092dc
Merge pull request #18 from hiyan/develop
hiyan Sep 3, 2018
4e83d34
add useful info to export
hiyan Sep 6, 2018
55e6c90
Merge pull request #19 from hiyan/gekkowk
hiyan Sep 6, 2018
aab894f
Merge pull request #20 from askmike/develop
hiyan Sep 6, 2018
51566bc
standardize naming
hiyan Sep 6, 2018
7de18ac
Merge pull request #21 from askmike/develop
hiyan Sep 13, 2018
851e24b
Merge pull request #23 from askmike/develop
hiyan Sep 18, 2018
9be4794
Merge pull request #25 from askmike/develop
hiyan Oct 8, 2018
9c53ebf
Update docs on common installation issues
hiyan Oct 17, 2018
9f0c18f
Merge branch 'develop' into common-install-issue
askmike Oct 19, 2018
0144f3a
Update docs/installation/installing_gekko_on_windows.md
askmike Oct 19, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion docs/installation/installing_gekko.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,9 @@ Once you have Gekko downloaded you need to install the dependencies, open your t

npm install --only=production

We also need to install Gekko Broker's dependencies, run:
*NOTE: You may see a vulnerability warning from NPM, if you run npm audit with --force, Gekko will break. See [here](https://github.com/askmike/gekko/issues/2585#issuecomment-428450997).*

You also need to install Gekko Broker's dependencies, run:

cd exchange
npm install --only=production
Expand Down
3 changes: 3 additions & 0 deletions docs/installation/installing_gekko_on_windows.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,13 @@ Install Gekko's dependencies:

npm install --only=production

*NOTE: You may see a vulnerability warning from NPM, if you run npm audit with --force, Gekko will break. See [here](https://github.com/askmike/gekko/issues/2585#issuecomment-428450997).*

Install Gekko Broker's dependencies:

cd exchange
npm install --only=production
cd ..
hiyan marked this conversation as resolved.
Show resolved Hide resolved

### Install Tulip Indicators

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,11 @@ cd gekko
npm install --only=production
cd exchange
npm install --only=production
cd ..
```

*NOTE: You may see a vulnerability warning from NPM, if you run npm audit with --force, Gekko will break. See [here](https://github.com/askmike/gekko/issues/2585#issuecomment-428450997).*

### Starting Gekko

`node gekko --ui`
Expand Down