Skip to content
This repository has been archived by the owner on Apr 30, 2023. It is now read-only.

Latest commit

 

History

History
16 lines (11 loc) · 372 Bytes

README.md

File metadata and controls

16 lines (11 loc) · 372 Bytes

Up

Introduction

Small utility to run one or multiple commands continuously and restart them based on file changes. Could be used to automatically restart a Go webserver for example.

Configuration

The up command defaults to up.toml for configuration which has the following format:

[service.myapp]
cmd = "go run ./cmd/myapp"
watch = ["**/*.go"]