-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update README to deal with remarkable wget lack of SSL support :(
- Loading branch information
Showing
1 changed file
with
10 additions
and
2 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 |
---|---|---|
|
@@ -14,11 +14,19 @@ You need an `OPENAI_API_KEY` environment variable set. I did this by adding it t | |
export OPENAI_API_KEY=your-key-here | ||
``` | ||
|
||
Install by getting the binary to your remarkable. Then you have to ssh over and run it. Here is how to install and run (run these on the remarkable): | ||
Install by getting the binary to your remarkable. On your not-remarkable: | ||
|
||
```sh | ||
# Install -- Fetch and make it executable | ||
wget https://github.com/awwaiid/ghostwriter/releases/latest/download/ghostwriter | ||
|
||
# Replace this ip address with your remarkable ip address | ||
scp ghostwriter [email protected]: | ||
``` | ||
|
||
Then you have to ssh over and run it. Here is how to install and run (run these on the remarkable): | ||
|
||
```sh | ||
# Make it executable after the initial copy | ||
chmod +x ./ghostwriter | ||
|
||
./ghostwriter --help # Get the options | ||
|