2020-07-15 18:15:48 +00:00
|
|
|
# A list of enabled plugins (or extensions) in server
|
|
|
|
EnabledPlugins = []
|
|
|
|
|
|
|
|
# Server domain names (e.g. example.com)
|
|
|
|
ServerDomains = []
|
|
|
|
|
|
|
|
# Path to directory with plugin assemblies
|
|
|
|
PluginsDirPath = ""
|
|
|
|
|
|
|
|
# ID of this server in terms of Cadmium federation network. WARNING! This ID should be maximally unique.
|
2020-07-16 08:47:18 +00:00
|
|
|
ServerID = ""
|
|
|
|
|
|
|
|
# Websocket server settings
|
|
|
|
[Websocket]
|
2020-09-06 10:16:13 +00:00
|
|
|
Host = "localhost"
|
|
|
|
Port = 8000
|
|
|
|
Endpoint = ""
|
|
|
|
|
|
|
|
# Here you can specify settings that is exposed by plugins
|
|
|
|
# For example - [Plugins.HelloWorld] is the settings for plugin called HelloWorld
|
|
|
|
[Plugins]
|
|
|
|
[Plugins.HelloWorld]
|
|
|
|
text = "123"
|
|
|
|
[Plugins.HelloWorld.Test]
|
|
|
|
modes = ["abc"]
|