「PttWeb」:修訂間差異
跳至導覽
跳至搜尋
第25行: | 第25行: | ||
== 設定 == | == 設定 == | ||
PttWeb需要一個<code>config.json</code>,設定可以參考<code>config.go</code>,最少需要指定這兩個參數: | |||
<syntaxhighlight lang="json"> | |||
{ | |||
"BoarddAddress": "", | |||
"MemcachedAddress": "" | |||
} | |||
</syntaxhighlight> | |||
== 相關連結 == | == 相關連結 == |
於 2020年5月8日 (五) 13:33 的修訂
PttWeb是PttBBS的網頁界面。
概要
PttWeb是一個Golang寫的界面,透過gRPC跟PttBBS的伺服器溝通。
相依性套件
先安裝需要的套件:
sudo apt install -y build-essential golang golang-goprotobuf-dev; sudo apt clean
編譯
這邊是參考.travis-ci.yml
的方式編譯[1]:
export GOPATH="$HOME/go"; go get -u github.com/ptt/pttweb; go get google.golang.org/grpc; go get -u github.com/golang/protobuf/{proto,protoc-gen-go}; make -C $GOPATH/src/github.com/ptt/pttweb/proto; go get -u -t -f github.com/ptt/pttweb/...
編譯完成後會在~/go/bin
裡面看到執行檔。
設定
PttWeb需要一個config.json
,設定可以參考config.go
,最少需要指定這兩個參數:
{
"BoarddAddress": "",
"MemcachedAddress": ""
}
相關連結
參考資料
- ↑ pttweb/.travis.yml at master · ptt/pttweb. [2020-04-09].