24 lines
401 B
TOML
24 lines
401 B
TOML
[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
|
|
|
|
[agent]
|
|
name = "development-agent"
|
|
data_dir = "./agent-runtime-data"
|
|
|
|
[master]
|
|
url = "http://localhost:8443"
|
|
token = "token"
|