feat: remove nxmesh-cli from workspace members and add development configuration file

This commit is contained in:
GW_MC
2026-03-03 04:34:15 +00:00
parent 9ac5a82c29
commit 8bae551af8
2 changed files with 15 additions and 1 deletions

View File

@@ -4,7 +4,6 @@ members = [
"crates/nxmesh-proto", "crates/nxmesh-proto",
"crates/nxmesh-master", "crates/nxmesh-master",
"crates/nxmesh-agent", "crates/nxmesh-agent",
"crates/nxmesh-cli",
"migration", "migration",
] ]
resolver = "3" resolver = "3"

15
config/development.toml Normal file
View File

@@ -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