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 | c07b87f5f14ff2c2e2fe12733f93278f1f397a89 (patch) | |
| tree | 3ed9eaef34b13789dc002d7df7d59859d9727584 | |
| parent | fix: `rust-toolchain` format (diff) | |
| download | api-worker-c07b87f5f14ff2c2e2fe12733f93278f1f397a89.tar.xz api-worker-c07b87f5f14ff2c2e2fe12733f93278f1f397a89.zip | |
chore: Update Rocket configuration
| -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" |