(password: string)
| 704 | * - cert: false |
| 705 | */ |
| 706 | export function defaultConfigFile(password: string): string { |
| 707 | return `bind-addr: 127.0.0.1:8080 |
| 708 | auth: password |
| 709 | password: ${password} |
| 710 | cert: false |
| 711 | ` |
| 712 | } |
| 713 | |
| 714 | interface ConfigArgs extends UserProvidedArgs { |
| 715 | config: string |
no outgoing calls
no test coverage detected