Git with a cup of tea, painless self-hosted git service Mirror for internal git.with.parts use https://git.with.parts
 
 
 
 
 
 
gitea/tools/watch.sh

8 lines
108 B

#!/bin/bash
set -euo pipefail
make watch-frontend &
make watch-backend &
trap 'kill $(jobs -p)' EXIT
wait