Skip to content

Commit

Permalink
chore(config): better default ports (#62)
Browse files Browse the repository at this point in the history
  • Loading branch information
maxime1907 authored Jul 17, 2024
1 parent 858e8b0 commit e317ec6
Showing 1 changed file with 41 additions and 41 deletions.
82 changes: 41 additions & 41 deletions config/config.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,51 @@
{
"WolframAPIKey": "",
"WundergroundAPIKey": "",
"OpenWeatherAPIKey": "",

"Logging":
{
"level": "INFO",
"output": "default",
"format": "%(asctime)s | %(levelname)s | %(message)s",
"datefmt": "%Y-%m-%dT%H:%M:%S%z"
},

"TorchRCON":
{
"Host": "0.0.0.0",
"Port": 27004,
"Password": "supersecretpassword"
},

"SMAPIServer":
{
"Host": "127.0.0.1",
"Port": 27014
},

"VoiceServer":
{
"Host": "127.0.0.1",
"Port": 27020,
"Port": 27019,
"SampleRate": 22050
},

"SMAPIServer":
"GeoIP":
{
"Host": "127.0.0.1",
"Port": 27021
"Path": "/usr/share/GeoIP",
"CityFilename": "GeoLite2-City.mmdb"
},

"DECTalk":
{
"Path": "dectalk",
"SayFilename": "say"
},

"Sounds":
{
"Path": "sounds"
},

"AudioLimits":
Expand Down Expand Up @@ -287,41 +323,5 @@
"URLFilter": {
"level": 0
}
},

"TorchRCON":
{
"Host": "0.0.0.0",
"Port": 27115,
"Password": "supersecretpassword"
},

"GeoIP":
{
"Path": "/usr/share/GeoIP",
"CityFilename": "GeoLite2-City.mmdb"
},

"DECTalk":
{
"Path": "dectalk",
"SayFilename": "say"
},

"Sounds":
{
"Path": "sounds"
},

"Logging":
{
"level": "INFO",
"output": "default",
"format": "%(asctime)s | %(levelname)s | %(message)s",
"datefmt": "%Y-%m-%dT%H:%M:%S%z"
},

"WolframAPIKey": "",
"WundergroundAPIKey": "",
"OpenWeatherAPIKey": ""
}
}

0 comments on commit e317ec6

Please sign in to comment.