git.tonybtw.com

https://git.tonybtw.com/git.tonybtw.com.git git://git.tonybtw.com/git.tonybtw.com.git
371 bytes raw
1
default:
2
    @just --list
3
4
dev port="8888":
5
    GIT_ROOT={{justfile_directory()}}/test-repos php -S localhost:{{port}} -t public
6
7
init-test-repos:
8
    mkdir -p test-repos
9
    @if [ ! -d "test-repos/git-btw.git" ]; then \
10
        git clone --bare . test-repos/git-btw.git; \
11
        echo "Created test-repos/git-btw.git"; \
12
    fi
13
14
clean-test-repos:
15
    rm -rf test-repos