-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2a9a96d
commit 5053e3d
Showing
1 changed file
with
16 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import { Location, TemperatureUnit } from './sharedTypes'; | ||
|
||
export const OPEN_WEATHER_API_KEY = process.env.REACT_APP_API_KEY; | ||
|
||
export const OPEN_WEATHER_API_ENDPOINT = 'https://api.openweathermap.org/data/2.5/weather'; | ||
|
||
export const LOCATION_VALUE_TO_LOCATION_QUERY_PARAM_MAP: Record<Location, string> = { | ||
lisbon: 'lisbon,pt', | ||
newyork: 'new+york,us', | ||
london: 'london,uk', | ||
}; | ||
|
||
export const TEMPERATURE_UNIT_VALUE_TO_UNITS_QUERY_PARAM_MAP: Record<TemperatureUnit, string> = { | ||
celsius: 'metric', | ||
farenheit: 'imperial', | ||
}; |