Skip to content

Latest commit

 

History

History
24 lines (16 loc) · 634 Bytes

README.adoc

File metadata and controls

24 lines (16 loc) · 634 Bytes

Simple weather app

Getting started

To use this app, you need to register an API Key on the OpenWeatherApp service.

You can create an application-secrets.properties in src/main/resources and add your API key there:

app.weather.api.key=<yourkey>
Tip
The application-secrets.properties file is referenced in the .gitignore of the project so you won’t commit it by mistake.

If you don’t like specifying the key in the project directly, you can set an OS environment property instead, something like:

$ EXPORT APP_WEATHER_API_KEY=<yourkey>