diff options
author | Kjetil Orbekk <kj@orbekk.com> | 2022-12-28 06:27:08 -0500 |
---|---|---|
committer | Kjetil Orbekk <kj@orbekk.com> | 2022-12-28 06:27:08 -0500 |
commit | c9a1ed63cce3edd92a2bcacc91bab110e64e1628 (patch) | |
tree | 93f35910efde9d617aa2ee9c511a89538bfb8b6d | |
parent | 2c9591c54ce1bdcaea29cc00f68bde2cb86ba1f3 (diff) |
Change default port configured in the dotenv example file
-rw-r--r-- | dotenv-example | 2 | ||||
-rw-r--r-- | flake.nix | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/dotenv-example b/dotenv-example index 641a21c..7b146e7 100644 --- a/dotenv-example +++ b/dotenv-example @@ -1,5 +1,5 @@ RUST_LOG=info,tower_http=debug,server=info,sqlx=warn,webapp,bridge -BIND_ADDRESS=[::]:8081 +BIND_ADDRESS=[::]:18081 RUST_BACKTRACE=1 AUTHENTICATOR=fake # or oauth OPENID_ISSUER_URL=https://auth.orbekk.com/realms/test @@ -92,6 +92,7 @@ nativeBuildInputs = with pkgs; [ rustToolchain cargo-watch + clippy rustfmt sqlx-cli podman-compose |