forked from discord/hal-9000
49 lines
1.3 KiB
JSON
49 lines
1.3 KiB
JSON
{
|
|
"prefix": "!",
|
|
"nickname": "Hal 9000",
|
|
"database": {
|
|
"host": "127.0.0.1",
|
|
"user": "badgey_development",
|
|
"pass": "",
|
|
"database_name": "hal_development",
|
|
"port": 5432
|
|
},
|
|
"channels": {
|
|
"log": "1367986872084860959"
|
|
},
|
|
"responses_file_path": "txt/responses.hal",
|
|
"services": {
|
|
"weather": {
|
|
"source_uri": "https://api.weatherapi.com/v1",
|
|
"cache_mode": "NoCache",
|
|
"api_key": ""
|
|
},
|
|
"frog_tips": {
|
|
"source_uri": "https://frog.tips/api/1/tips/",
|
|
"cache_name": "frog_tips",
|
|
"cache_mode": "Cache"
|
|
},
|
|
"dog_pics": {
|
|
"source_uri": "https://api.thedogapi.com/v1/images/search?limit=100&order=RAND",
|
|
"cache_name": "dog_pics",
|
|
"cache_mode": "Cache",
|
|
"api_key": "#{DOGPICS_API_KEY}#"
|
|
},
|
|
"cat_pics": {
|
|
"source_uri": "https://api.thecatapi.com/v1/images/search?limit=100&order=RAND",
|
|
"cache_name": "cat_pics",
|
|
"cache_mode": "Cache",
|
|
"api_key": "#{CATPICS_API_KEY}#"
|
|
},
|
|
"dad_jokes": {
|
|
"source_uri": "https://icanhazdadjoke.com/search?limit=30",
|
|
"cache_name": "dad_jokes",
|
|
"cache_mode": "Cache"
|
|
},
|
|
"nasa_apod": {
|
|
"source_uri": "https://api.nasa.gov/planetary/apod?api_key=NZfKclpoaO9HnvfvaCjeJ3csDecvIqNiABVw2YvN",
|
|
"cache_name": "nasa_apod",
|
|
"cache_mode": "NoCache"
|
|
}
|
|
}
|
|
} |