https://github.com/mschaeffner/metmoji-server
https://github.com/mschaeffner/metmoji-server
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/mschaeffner/metmoji-server
- Owner: mschaeffner
- License: apache-2.0
- Created: 2017-07-17T08:29:36.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-08-01T11:40:26.000Z (almost 9 years ago)
- Last Synced: 2025-11-20T14:33:26.679Z (8 months ago)
- Language: Java
- Size: 17.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# metmoji-server
## Files to add in src/main/resources
To make metmoji-server working you need to include 2 files into scr/main/resources.
**app.properties:**
This file contains the API key to access the openweathermap API.
```
openweathermapApiKey: XXXXXXXXXXXXX
```
**city.list.json:**
This file contains the list of all cities available in openweather map. This can be downloaded from openweathermap and is not included here, because I was not sure if it is allowed to publish this file on github.
```json
[
{
"id": 2950158,
"name": "Berlin",
"country": "DE",
"coord": {
"lon": 10.45,
"lat": 54.033329
}
},
...
]
```