diff options
| author | Fuwn <[email protected]> | 2021-06-09 12:18:17 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2021-06-09 12:18:17 +0000 |
| commit | d07d2ed61b7de1d191eb7ef0a149246d52937d69 (patch) | |
| tree | a640e4c9a65d77592d022bd638dc684aab0dd75d /.whirl/Config.example.toml | |
| parent | feat(global): move whirl-generated files to their own directories (diff) | |
| download | whirl-d07d2ed61b7de1d191eb7ef0a149246d52937d69.tar.xz whirl-d07d2ed61b7de1d191eb7ef0a149246d52937d69.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 '.whirl/Config.example.toml')
| -rw-r--r-- | .whirl/Config.example.toml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/.whirl/Config.example.toml b/.whirl/Config.example.toml new file mode 100644 index 0000000..aa2d684 --- /dev/null +++ b/.whirl/Config.example.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 |