mirror of
https://github.com/TheCommsChannel/TC2-BBS-mesh.git
synced 2025-12-14 23:44:42 -05:00
- Added weather plugin with functionality to fetch and display weather information using the OpenWeather API. - Integrated weather command into the main menu and updated command handlers to manage user interactions for weather queries. - Updated .gitignore to include database and configuration files. - Created a test client for interactive testing of the BBS system. - Added example configuration for the weather plugin.
12 lines
412 B
Text
12 lines
412 B
Text
##########################
|
|
#### OpenWeather API ####
|
|
##########################
|
|
# API key and rate limiting settings for the OpenWeather API
|
|
# You can get one here.. https://openweathermap.org/api
|
|
[openweather]
|
|
api_key = YOUR API KEY HERE
|
|
# Maximum number of API calls per minute (default: 30)
|
|
max_calls_per_minute = 30
|
|
# Maximum number of API calls per day (default: 500)
|
|
max_calls_per_day = 500
|
|
enabled = true
|