Skip to content

Commit

Permalink
Merge pull request #13 from themoosman/udpate-api-endpoint
Browse files Browse the repository at this point in the history
Update API endpoints
  • Loading branch information
avryhof authored Jun 19, 2024
2 parents 073b02e + cd58753 commit a5cd478
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ pip install ambient_api

### Environmental Variables
```bash
AMBIENT_ENDPOINT=https://api.ambientweather.net/v1
AMBIENT_ENDPOINT=https://rt.ambientweather.net/v1
AMBIENT_API_KEY='your-api-key-here'
AMBIENT_APPLICATION_KEY='your-application-key-here'
```
Expand Down
2 changes: 1 addition & 1 deletion ambient_api/settings.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import os

try:
AMBIENT_ENDPOINT = "https://api.ambientweather.net/v1"
AMBIENT_ENDPOINT = "https://rt.ambientweather.net/v1"
AMBIENT_APPLICATION_KEY = os.environ["AMBIENT_APPLICATION_KEY"]
AMBIENT_API_KEY = os.environ["AMBIENT_API_KEY"]
except KeyError:
Expand Down

0 comments on commit a5cd478

Please sign in to comment.