Add config file information to command doc.
This commit is contained in:
parent
dd6b71300f
commit
ccfcbebbdc
1 changed files with 14 additions and 1 deletions
15
doc.go
15
doc.go
|
@ -5,8 +5,20 @@
|
|||
/*
|
||||
btcd is a full-node bitcoin implementation written in Go.
|
||||
|
||||
The default options are sane for most users. This means btcd will work 'out of
|
||||
the box' for most users. However, there are also a wide variety of flags that
|
||||
can be used to control it.
|
||||
|
||||
The following section provides a usage overview which enumerates the flags. An
|
||||
interesting point to note is that the long form of all of these options
|
||||
(except -C) can be specified in a configuration file that is automatically
|
||||
parsed when btcd starts up. By default, the configuration file is located at
|
||||
~/.btcd/btcd.conf on POSIX-style operating systems and %APPDATA%\btcd\btcd.conf
|
||||
on Windows. The -C (--configfile) flag, as shown below, can be used to override
|
||||
this location.
|
||||
|
||||
Usage:
|
||||
btcd [OPTIONS]
|
||||
btcd [OPTIONS]
|
||||
|
||||
The flags are:
|
||||
-h, --help Show this help message
|
||||
|
@ -43,5 +55,6 @@ The flags are:
|
|||
between 1024 and 65536
|
||||
-d, --debuglevel= Logging level {trace, debug, info, warn, error,
|
||||
critical}
|
||||
|
||||
*/
|
||||
package main
|
||||
|
|
Loading…
Reference in a new issue