diff --git a/README.md b/README.md index f8837bd..47e3ee2 100644 --- a/README.md +++ b/README.md @@ -51,18 +51,14 @@ For detailed guide on how to test and configure, please refer to [INTEGRATIONS.m ## Pre-requisites -- Linux, MacOS, Windows +- Linux or MacOS, ([maybe](https://github.com/martomi/chiadog/pull/43) Windows) - Python 3.7+ - Enabled `INFO` logs on your chia farmer ### How to enable INFO logs on chia farmer? First configure the log level to `INFO`. This ensures that all logs necessary for chiadog to operate are available -under `~/.chia/mainnet/log/debug.log`. (Windows: `C:\Users\\.chia\mainnet\log\debug.log`) - -Windows: The below commands are equivalent on Windows. But you need go to this -folder `cd C:\Users\\AppData\Local\chia-blockchain\app-1.1.0\resources\app.asar.unpacked\daemon` and execute -with `.\chia.exe ...` +under `~/.chia/mainnet/log/debug.log`. ``` chia configure -log-level=INFO @@ -94,11 +90,7 @@ cd chiadog 2. Run the install script. ``` -# Linux & MacOS ./install.sh - -# Windows -./install.ps1 ``` 3. Copy the example config file @@ -134,11 +126,7 @@ git pull 2. Start the watchdog ``` -# Linux / MacOS ./start.sh - -# Windows -./start.ps1 ``` 3. Verify that your plots are detected. Within a few seconds you should see INFO log: diff --git a/install.ps1 b/install.ps1 deleted file mode 100644 index d8d9866..0000000 --- a/install.ps1 +++ /dev/null @@ -1,24 +0,0 @@ -$command = "py" -if (Get-Command python -errorAction SilentlyContinue) { - $command = "python" -} -elseif (Get-Command python3 -errorAction SilentlyContinue) { - $command = "python3" -} - -# Create virtual environment -Invoke-expression "$($command) -m venv venv" - -# Activate the virtual environment -./venv/Scripts/activate.ps1 - -# Update pip to latest version -Invoke-expression "$($command) -m pip install --upgrade pip" - -# Install dependencies -pip install wheel - -pip install -r requirements.txt - -# Deactivate virtual env -deactivate diff --git a/start.ps1 b/start.ps1 deleted file mode 100644 index 1684a45..0000000 --- a/start.ps1 +++ /dev/null @@ -1,13 +0,0 @@ -$command = "py" -if (Get-Command python -errorAction SilentlyContinue) { - $command = "python" -} -elseif (Get-Command python3 -errorAction SilentlyContinue) { - $command = "python3" -} - -# Activate the virtual environment -./venv/Scripts/activate.ps1 - -# Start the ChiaDog -Invoke-expression "$($command) main.py --config config.yaml"