Fix readme.
This commit is contained in:
parent
e0c0f1a68d
commit
261a14e343
@ -14,7 +14,7 @@ jobs:
|
|||||||
command: |
|
command: |
|
||||||
go get -u github.com/golang/dep/cmd/dep
|
go get -u github.com/golang/dep/cmd/dep
|
||||||
dep ensure
|
dep ensure
|
||||||
go test -coverprofile=coverage.txt . ./worker ./cli
|
go test -coverprofile=coverage.txt -covermode=atomic -p 1 . ./worker ./cli
|
||||||
bash <(curl -s https://codecov.io/bash)
|
bash <(curl -s https://codecov.io/bash)
|
||||||
docker:
|
docker:
|
||||||
docker:
|
docker:
|
||||||
|
2
main.go
2
main.go
@ -33,8 +33,8 @@ var uaString string
|
|||||||
func initConfig() {
|
func initConfig() {
|
||||||
viper.BindEnv("actor_pem")
|
viper.BindEnv("actor_pem")
|
||||||
viper.BindEnv("relay_domain")
|
viper.BindEnv("relay_domain")
|
||||||
viper.BindEnv("redis_url")
|
|
||||||
viper.BindEnv("relay_bind")
|
viper.BindEnv("relay_bind")
|
||||||
|
viper.BindEnv("redis_url")
|
||||||
hostURL, _ = url.Parse("https://" + viper.GetString("relay_domain"))
|
hostURL, _ = url.Parse("https://" + viper.GetString("relay_domain"))
|
||||||
hostPrivatekey, _ = keyloader.ReadPrivateKeyRSAfromPath(viper.GetString("actor_pem"))
|
hostPrivatekey, _ = keyloader.ReadPrivateKeyRSAfromPath(viper.GetString("actor_pem"))
|
||||||
redisClient := redis.NewClient(&redis.Options{
|
redisClient := redis.NewClient(&redis.Options{
|
||||||
|
@ -26,6 +26,7 @@ See [GitHub wiki](https://github.com/yukimochi/Activity-Relay/wiki)
|
|||||||
|
|
||||||
- `ACTOR_PEM` (ex. `/actor.pem`)
|
- `ACTOR_PEM` (ex. `/actor.pem`)
|
||||||
- `RELAY_DOMAIN` (ex. `relay.toot.yukimochi.jp`)
|
- `RELAY_DOMAIN` (ex. `relay.toot.yukimochi.jp`)
|
||||||
|
- `RELAY_SERVICENAME` (ex. `YUKIMOCHI Toot Relay Service`)
|
||||||
- `RELAY_BIND` (ex. `0.0.0.0:8080`)
|
- `RELAY_BIND` (ex. `0.0.0.0:8080`)
|
||||||
- `REDIS_URL` (ex. `127.0.0.1:6379`)
|
- `REDIS_URL` (ex. `127.0.0.1:6379`)
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user