-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from TheHolyRoger/mqtt
Support new Hummingbot MQTT Bridge
- Loading branch information
Showing
73 changed files
with
1,758 additions
and
1,056 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,4 +4,4 @@ rogerthat/* eol=lf | |
scripts/* eol=lf | ||
scripts/*.bat eol=crlf | ||
support/* eol=lf | ||
tests/* eol=lf | ||
examples/* eol=lf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
# Source Installation (ADVANCED!!!) | ||
|
||
<details> | ||
<summary>Steps to install from **source** instead of docker ...</summary> | ||
|
||
## Installation | ||
|
||
[Install Miniconda](https://docs.conda.io/en/latest/miniconda.html) (or Anaconda) | ||
|
||
Clone this repository. | ||
|
||
```bash | ||
git clone [email protected]:TheHolyRoger/RogerThat.git | ||
``` | ||
|
||
Change directory: | ||
```bash | ||
cd RogerThat | ||
``` | ||
|
||
Set up and activate the environment with the following command. | ||
|
||
<details> | ||
<summary>Linux/Mac</summary> | ||
|
||
```bash | ||
./scripts/update_environment.sh | ||
``` | ||
</details> | ||
<details> | ||
<summary>Windows</summary> | ||
|
||
```bat | ||
scripts\update_environment.bat | ||
``` | ||
</details> | ||
|
||
Run the following command to generate the default configs: | ||
```bash | ||
scripts/setup.py -s | ||
``` | ||
|
||
Edit the configs in `./configs` or via the `setup.py` command. | ||
|
||
___ | ||
|
||
## Running | ||
|
||
From source: | ||
|
||
```bash | ||
bin/start_rogerthat.py | ||
``` | ||
</details> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.