diff --git a/Cargo.toml b/Cargo.toml index ba838a7..b4a4980 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,6 @@ members = [ "crates/nxmesh-proto", "crates/nxmesh-master", "crates/nxmesh-agent", - "crates/nxmesh-cli", "migration", ] resolver = "3" diff --git a/config/development.toml b/config/development.toml new file mode 100644 index 0000000..999fde1 --- /dev/null +++ b/config/development.toml @@ -0,0 +1,15 @@ +[server] +bind_address = "0.0.0.0" +port = 8080 + +[database] +url = "postgres://postgres:postgres@postgres:5432/nxmesh" +max_connections = 10 + +[grpc] +bind_address = "0.0.0.0" +port = 8443 + +[auth] +jwt_secret = "development-secret-do-not-use-in-production" +jwt_expiration_hours = 24