Files
hetty/modd.conf

12 lines
231 B
Plaintext
Raw Normal View History

2020-09-22 18:33:02 +02:00
@cert = $HOME/.ssh/hetty_cert.pem
@key = $HOME/.ssh/hetty_key.pem
2020-09-26 23:36:48 +02:00
@db = hetty.bolt
2020-09-24 22:28:37 +02:00
@addr = :8080
2019-11-24 00:14:49 +01:00
2019-11-17 15:09:37 +01:00
**/*.go {
daemon +sigterm: go run ./cmd/hetty \
2019-11-30 12:43:55 +01:00
-cert=@cert \
-key=@key \
2020-09-26 23:36:48 +02:00
-db=@db \
2020-09-24 22:28:37 +02:00
-addr=@addr
2019-11-17 15:09:37 +01:00
}