diff options
| author | Fuwn <[email protected]> | 2020-10-29 23:50:10 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2020-10-29 23:50:10 -0700 |
| commit | c20c9a59a1d487286116809856497fa089781659 (patch) | |
| tree | 9be2c51c61ec355df471d1d6fc3b809d354e64c4 /Rocket.toml | |
| parent | feat, annotate, chore (desc) (diff) | |
| download | dep-core-next-c20c9a59a1d487286116809856497fa089781659.tar.xz dep-core-next-c20c9a59a1d487286116809856497fa089781659.zip | |
feat, chore, doc
feat:
- implement rocket webserver (switch to rust nightly)
- implement basic voice handling (outdated as i will probably be adding lavalink soon)
chore:
- specify rust toolchain in `rust-toolchain` file.
- tidy up code a tiny bit
doc:
- add cc enviroment variables to file for future reference.
- thicken readme.md (useless tbh)
Diffstat (limited to 'Rocket.toml')
| -rw-r--r-- | Rocket.toml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Rocket.toml b/Rocket.toml new file mode 100644 index 0000000..2f99dde --- /dev/null +++ b/Rocket.toml @@ -0,0 +1,9 @@ +[development] +address = "localhost" +port = 1337 +log = "normal" + +[production] +address = "0.0.0.0" +port = 8020 +log = "critical" |