weatherservice

module
v0.0.0-...-7efb10f Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Feb 20, 2024 License: MIT

README

Weather Service

Coding Exercise

Write an http server that uses the Open Weather API that exposes an endpoint that takes in lat/long coordinates. This endpoint should return what the weather condition is outside in that area (snow, rain, etc), whether it’s hot, cold, or moderate outside (use your own discretion on what temperature equates to each type).

The API can be found here:https://openweathermap.org/api. Even though most of the API calls found on OpenWeather aren’t free, you should be able to use the free “current weather data” API call for this project. First, sign-up for an account, which shouldn’t require credit card or payment information. Once you’ve created an account, use https://openweathermap.org/faq to get your API Key setup to start using the API.

Once you’ve coded your project, add it to a publicly accessible Github repository and share it with the team. Additionally, please don’t add your API Key to the project. Each member of the team reviewing your code has their own key to use for testing your project.

Setup & Run

This project requires Go >= 1.22 (as we use the new http Mux matchers and slog)

To run:

$ export OPEN_WEATHER_MAP_KEY=xxx...
$ make start

This exposes and endpoint that can be called like so:

$ http 'http://localhost:8080/v1/conditions?lat=40.39&lon=-111.99'

To test:

$ make test

Directories

Path Synopsis
cmd
internal

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL