Compare commits
No commits in common. "79f114509858b70e3e041872d0bf5240483680f9" and "8571b71298aac83ba75e1c7d96f5635ec6abef3e" have entirely different histories.
79f1145098
...
8571b71298
77
README.mdown
77
README.mdown
|
@ -20,42 +20,10 @@ Documents\Elder Scrolls Online\
|
||||||
|
|
||||||
Make a copy of the `live` folder and rename it to something meaningful like `old` or `backup`.
|
Make a copy of the `live` folder and rename it to something meaningful like `old` or `backup`.
|
||||||
|
|
||||||
# Windows Installation
|
# Dependencies
|
||||||
|
|
||||||
Install the latest Python 3 using the installer provided by [python.org](https://www.python.org/downloads/windows/).
|
|
||||||
|
|
||||||
Open [Windows Terminal](https://www.microsoft.com/en-US/p/windows-terminal/9n0dx20hk701) or any windows command prompt and navigate to this project.
|
|
||||||
Use the Python package manager PIP to install `eso-banana`.
|
|
||||||
|
|
||||||
```powershell
|
|
||||||
cd .\eso-banana\
|
|
||||||
pip install .
|
|
||||||
```
|
|
||||||
|
|
||||||
Once the project is installed to python's packages you may invoke the addon script with the following command:
|
|
||||||
|
|
||||||
```powershell
|
|
||||||
eso-banana-script.exe
|
|
||||||
```
|
|
||||||
|
|
||||||
# Windows Scheduled
|
|
||||||
|
|
||||||
To schedule a periodic background run of `eso-banana`, open Powershell as a user and enter the following commands.
|
|
||||||
|
|
||||||
```powershell
|
|
||||||
$Command = (Get-Command "eso-banana-script.exe").Source
|
|
||||||
$Action = New-ScheduledTaskAction -Execute $Command -Argument "--verbose"
|
|
||||||
$Trigger = New-ScheduledTaskTrigger -Daily -At 11am
|
|
||||||
$Settings = New-ScheduledTaskSettingsSet -RunOnlyIfNetworkAvailable -StartWhenAvailable -RunOnlyIfIdle
|
|
||||||
Register-ScheduledTask -TaskName "eso-banana" -Action $Action -Trigger $Trigger -Settings $Settings -Description "Elder Scrolls Online addon manager and a Tamriel Trade Centre price table updater."
|
|
||||||
```
|
|
||||||
|
|
||||||
To check to make sure the task is registered correctly, enter `Get-ScheduledTask` and check that the first entry looks similar:
|
|
||||||
|
|
||||||
```
|
```
|
||||||
TaskPath TaskName State
|
python3-pip
|
||||||
-------- -------- -----
|
|
||||||
\ eso-banana Ready
|
|
||||||
```
|
```
|
||||||
|
|
||||||
# Linux Installation
|
# Linux Installation
|
||||||
|
@ -77,6 +45,43 @@ eso-banana-script
|
||||||
|
|
||||||
TODO linux chron job instructions.
|
TODO linux chron job instructions.
|
||||||
|
|
||||||
|
# Windows Installation
|
||||||
|
|
||||||
|
Install the latest Python 3 using the installer provided by [python.org](https://www.python.org/downloads/windows/).
|
||||||
|
|
||||||
|
Open [Windows Terminal](https://www.microsoft.com/en-US/p/windows-terminal/9n0dx20hk701) or any windows command prompt and navigate to this project.
|
||||||
|
Use the Python package manager PIP to install `eso-banana`.
|
||||||
|
|
||||||
|
```powershell
|
||||||
|
cd .\eso-banana\
|
||||||
|
pip install .
|
||||||
|
```
|
||||||
|
|
||||||
|
Once the project is installed to python's packages you may invoke the addon script with the following command:
|
||||||
|
|
||||||
|
```powershell
|
||||||
|
eso-banana-script.exe
|
||||||
|
```
|
||||||
|
|
||||||
|
## Windows Scheduled
|
||||||
|
|
||||||
|
To schedule a periodic background run of `eso-banana`, open Powershell as a user and enter the following commands.
|
||||||
|
|
||||||
|
```powershell
|
||||||
|
$Action = New-ScheduledTaskAction -Execute "eso-banana-script.exe" -Argument "--verbose"
|
||||||
|
$Trigger = New-ScheduledTaskTrigger -Daily -At 11am
|
||||||
|
$Settings = New-ScheduledTaskSettingsSet -RunOnlyIfNetworkAvailable -StartWhenAvailable -RunOnlyIfIdle
|
||||||
|
Register-ScheduledTask -TaskName "eso-banana" -Action $Action -Trigger $Trigger -Settings $Settings -Description "Elder Scrolls Online addon manager and a Tamriel Trade Centre price table updater."
|
||||||
|
```
|
||||||
|
|
||||||
|
To check to make sure the task is registered correctly, enter `Get-ScheduledTask` and check that the first entry looks similar:
|
||||||
|
|
||||||
|
```
|
||||||
|
TaskPath TaskName State
|
||||||
|
-------- -------- -----
|
||||||
|
\ eso-banana Ready
|
||||||
|
```
|
||||||
|
|
||||||
# Development
|
# Development
|
||||||
|
|
||||||
Use docker to test the python components.
|
Use docker to test the python components.
|
||||||
|
@ -98,3 +103,7 @@ cd ./banana/
|
||||||
docker-compose build
|
docker-compose build
|
||||||
docker-compose run banana
|
docker-compose run banana
|
||||||
```
|
```
|
||||||
|
|
||||||
|
# Notes
|
||||||
|
|
||||||
|
- https://docs.microsoft.com/en-us/powershell/module/scheduledtasks/new-scheduledtaskaction
|
Loading…
Reference in New Issue