diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 6749f20..0eb5be6 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -10,9 +10,10 @@ The following is a set of guidelines for contributing to the MoniGoMani Hyper St Table of Contents - -* [Installation instructions](#installation-instructions) -* [Using pre-commit hooks](#using-pre-commit-hooks) -* [GitHub Action Workflows](#github-action-workflows) +- [Contributing to MoniGoMani Hyper Strategy](#contributing-to-monigomani-hyper-strategy) + - [Installation instructions](#installation-instructions) + - [Using pre-commit hooks](#using-pre-commit-hooks) + - [GitHub Action Workflows](#github-action-workflows) --- @@ -68,7 +69,7 @@ Fix double quoted strings................................................Failed Fixing strings in mgm-hurry -Fix requirements.txt.....................................................Passed +Fix requirements-mgm.txt.................................................Passed Check for case conflicts.................................................Passed ``` diff --git a/Documentation/Docs-VeryQuickStart.md b/Documentation/Docs-VeryQuickStart.md index 972f735..c11cdb7 100644 --- a/Documentation/Docs-VeryQuickStart.md +++ b/Documentation/Docs-VeryQuickStart.md @@ -47,7 +47,7 @@ Make sure that you have all of the following available on your system before pro 1) Install the required Python packages *(Command may vary a bit depending on your systems version of `python` & `pip`)* ```powershell - pip3 install -r https://raw.githubusercontent.com/Rikj000/MoniGoMani/development/requirements.txt + pip3 install -r https://raw.githubusercontent.com/Rikj000/MoniGoMani/development/requirements-mgm.txt ``` 2) Download `mgm-hurry` in the folder where you want to install `MoniGoMani` and/or `Freqtrade` ```powershell diff --git a/installer.sh b/installer.sh index fad725c..f591d1e 100755 --- a/installer.sh +++ b/installer.sh @@ -239,13 +239,13 @@ echo -e "${WHITE} ⚙️ Installing MGM-Hurry...${CLOSE}" echo -e "${WHITE}~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~${CLOSE}" echo "" -cd "$INSTALL_DIR" && pip install -r requirements.txt && python3 ./mgm-hurry up +cd "$INSTALL_DIR" && pip install -r requirements-mgm.txt && python3 ./mgm-hurry up echo "" echo "" echo -e "${WHITE}~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~${CLOSE}" echo "" -echo " 🎉 ${CYAN}You are all set! We hope you enjoy your ride.${CLOSE}" +echo -e "${CYAN} 🎉 You are all set! We hope you enjoy your ride.${CLOSE}" echo "" echo -e "${WHITE}~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~${CLOSE}" echo "" diff --git a/requirements.txt b/requirements-mgm.txt similarity index 100% rename from requirements.txt rename to requirements-mgm.txt diff --git a/user_data/mgm_tools/mgm_hurry/MoniGoManiCli.py b/user_data/mgm_tools/mgm_hurry/MoniGoManiCli.py index 1d538e1..902c52a 100644 --- a/user_data/mgm_tools/mgm_hurry/MoniGoManiCli.py +++ b/user_data/mgm_tools/mgm_hurry/MoniGoManiCli.py @@ -91,7 +91,7 @@ class MoniGoManiCli(object): def download_setup_mgm(self, branch: str = 'develop', target_dir: str = None): """ - Install Freqtrade using a git clone to target_dir. + Install MoniGoMani using a git clone to target_dir. :param branch: (str) Checkout a specific branch. Defaults to 'develop'. :param target_dir: (str) Specify a target_dir to install Freqtrade. Defaults to os.getcwd().