Skip to content

Commit 1018bfc

Browse files
Merge pull request #172 from Apres2707/ru-endpoint
add ru endpoint
2 parents 41191f0 + b77fd4e commit 1018bfc

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ The script takes the following environment variables
1717
| LINK_UP_PASSWORD | LibreLink Up Login Password | mypassword | X |
1818
| LINK_UP_CONNECTION | LibreLink Up Patient-ID. Can be received from the console output if multiple connections are available. | 123456abc-abcd-efgh-7891def | |
1919
| LINK_UP_TIME_INTERVAL | The time interval of requesting values from libre link up | 5 | |
20-
| LINK_UP_REGION | Your region. Used to determine the correct LibreLinkUp service (Possible values: AE, AP, AU, CA, DE, EU, EU2, FR, JP, US, LA) | EU | |
20+
| LINK_UP_REGION | Your region. Used to determine the correct LibreLinkUp service (Possible values: AE, AP, AU, CA, DE, EU, EU2, FR, JP, US, LA, RU) | EU | |
2121
| NIGHTSCOUT_URL | Hostname of the Nightscout instance (without https://) | nightscout.yourdomain.com | X |
2222
| NIGHTSCOUT_API_TOKEN | SHA1 Hash of Nightscout access token | 162f14de46149447c3338a8286223de407e3b2fa | X |
2323
| NIGHTSCOUT_DISABLE_HTTPS | Disables the HTTPS requirement for Nightscout URLs | true | |

app.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
"required": true
3434
},
3535
"LINK_UP_REGION": {
36-
"description": "Your region. Used to determine the correct LibreLinkUp service (Possible values: AE, AP, AU, CA, DE, EU, EU2, FR, JP, US, LA)",
36+
"description": "Your region. Used to determine the correct LibreLinkUp service (Possible values: AE, AP, AU, CA, DE, EU, EU2, FR, JP, US, LA, RU)",
3737
"value": "EU",
3838
"required": false
3939
},

src/constants/llu-api-endpoints.ts

+1
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,5 @@ export const LLU_API_ENDPOINTS: LluApiEndpoints = {
1414
JP: "api-jp.libreview.io",
1515
US: "api-us.libreview.io",
1616
LA: "api-la.libreview.io",
17+
RU: "api.libreview.ru",
1718
} as const;

0 commit comments

Comments
 (0)