diff options
| author | Fuwn <[email protected]> | 2021-06-09 12:18:17 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2021-06-09 12:18:17 -0700 |
| commit | 9fbf1af0fac4b55cf4820322d4475f0a07371139 (patch) | |
| tree | d614b3880f650cb6aa90e4b38da03f47d693de9c /crates/whirl_config/Config.default.toml | |
| parent | feat(global): move whirl-generated files to their own directories (diff) | |
| download | whirl-9fbf1af0fac4b55cf4820322d4475f0a07371139.tar.xz whirl-9fbf1af0fac4b55cf4820322d4475f0a07371139.zip | |
refactor(config): rename `Whirl.toml` to `Config.toml`
Since the configuration file is in the `.whirl` directory, it is redundant to have it's name still
as `Whirl.toml`
BREAKING CHANGE: Configuration file is renamed
Diffstat (limited to 'crates/whirl_config/Config.default.toml')
| -rw-r--r-- | crates/whirl_config/Config.default.toml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/crates/whirl_config/Config.default.toml b/crates/whirl_config/Config.default.toml new file mode 100644 index 0000000..aa2d684 --- /dev/null +++ b/crates/whirl_config/Config.default.toml @@ -0,0 +1,24 @@ +# See more keys and their definitions at https://whirlsplash.org/docs/whirl/configuration + +[whirlsplash] +worldsmaster_username = "WORLDSMASTER" +ip = "0.0.0.0" +api.port = 8080 + +[whirlsplash.prompt] +enable = false +ps1 = "[WORLDSMASTER@Whirlsplash ~]$" + +[whirlsplash.log] +enable = true +level = 1 +everything = false +test = false +file = true + +[distributor] +worldsmaster_greeting = "Welcome to Whirlsplash!" +port = 6650 + +[hub] +port = 5673 |