Kieran's opinionated (and probably slightly dumb) nix config
at main 318 B view raw
1# bore tunnel configuration 2# Save this file as "bore.toml" in your project directory 3 4[myapp] 5port = 8000 6 7[api] 8port = 3000 9protocol = "http" 10label = "dev" 11 12[frontend] 13port = 5173 14label = "local" 15 16[database] 17port = 5432 18protocol = "tcp" 19label = "postgres" 20 21[game-server] 22port = 27015 23protocol = "udp" 24label = "game"