diff options
| author | Fuwn <[email protected]> | 2021-04-26 16:12:47 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-04-26 16:12:47 -0700 |
| commit | 3e66569399d36f28cd2b1e9b21e2823fa2ac9941 (patch) | |
| tree | 01e8c26d888ba024f88e2b886b71afdef2fdbf66 /Rocket.toml | |
| parent | fix: `rust-toolchain` format (diff) | |
| download | api-3e66569399d36f28cd2b1e9b21e2823fa2ac9941.tar.xz api-3e66569399d36f28cd2b1e9b21e2823fa2ac9941.zip | |
chore: Update Rocket configuration
Diffstat (limited to 'Rocket.toml')
| -rw-r--r-- | Rocket.toml | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/Rocket.toml b/Rocket.toml index d53c0a4..c71e967 100644 --- a/Rocket.toml +++ b/Rocket.toml @@ -1,2 +1,12 @@ -[release] -port = 8084 +[development] +address = "0.0.0.0" +port = 8000 +log = "normal" + +[staging] +address = "0.0.0.0" +log = "normal" + +[production] +address = "0.0.0.0" +log = "critical" |