Skip to content

Latest commit

 

History

History
50 lines (35 loc) · 964 Bytes

config.md

File metadata and controls

50 lines (35 loc) · 964 Bytes

配置

在编译好gofound之后,就可以启动了。

./gofound

参数

./gofound -h
  -addr string
        set server addr and port. (default "127.0.0.1:5678")
  -data string
        set data dataDir. (default "./data")

addr

指定要监听的地址和端口。默认为127.0.0.1:5678 监听本地地址。

./gofound --addr=127.0.0.1:5678  
./gofound --addr=:5678  
./gofound --addr=0.0.0.0:5678  
./gofound --addr=192.168.1.1:5678  

data

指定索引数据存储的目录,可以是相对路径,也可以是绝对路径。

相对路径是存在gofound所在目录下的。

```shell
./gofound --data=./data
./gofound --data=/www/data

生产模式

在生产模式下,不会输出一些不必要的日志,只输出错误日志。设置生产模式为export GIN_MODE=release 与GIN框架保持一致。

export GIN_MODE=release && ./gofound