mirror of
https://github.com/benbusby/farside.git
synced 2025-06-08 10:26:36 +00:00
refactor
This commit is contained in:
parent
a76046a41b
commit
a6e0c34abe
5 changed files with 10 additions and 11 deletions
|
@ -14,5 +14,4 @@ config :farside,
|
|||
queries: [
|
||||
"weather",
|
||||
"time"
|
||||
],
|
||||
services_json_data: System.get_env("FARSIDE_SERVICES_JSON") || ""
|
||||
]
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
import Config
|
||||
|
||||
config :farside,
|
||||
port: System.get_env("FARSIDE_PORT", "4001"),
|
||||
services_json: System.get_env("FARSIDE_SERVICES_JSON", "services.json")
|
||||
port: System.get_env("FARSIDE_PORT", nil),
|
||||
services_json: System.get_env("FARSIDE_SERVICES_JSON", "services.json"),
|
||||
services_json_data: System.get_env("FARSIDE_SERVICES_JSON_DATA") || ""
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue