Skip to content

Commit

Permalink
Added more informations. Corrected endpoint IP
Browse files Browse the repository at this point in the history
  • Loading branch information
Danny committed Dec 28, 2023
1 parent 8c4b826 commit 90b6d21
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,17 @@ Customization in keypair generator to output an array for the ESP32 firmware and

### Set up endpoint/fetch location server

- Create a docker network

`docker network create macless_haystack`

- Install [Anisette Server](https://github.com/Dadoum/anisette-v3-server):

`docker run -d --restart always --name anisette -p 6969:6969 --volume anisette-v3_data:/home/Alcoholic/.config/anisette-v3/lib/ --network macless_haystack dadoum/anisette-v3-server`

- Install Macless Haystack endpoint:

`docker run -i --restart unless-stopped --name macless-haystack -p 6176:6176 --volume mh_data:/webserver/data/ --network macless_haystack christld/macless-haystack`

### Configure and install frontend

Expand Down
2 changes: 1 addition & 1 deletion endpoint/register/pypush_gsa_icloud.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
# Disable SSL Warning
urllib3.disable_warnings()

ANISETTE_URL = 'http://localhost:6969'
ANISETTE_URL = 'http://anisette:6969'

logger = logging.getLogger()

Expand Down

0 comments on commit 90b6d21

Please sign in to comment.