Last active
February 24, 2018 03:16
-
-
Save wess/7a4a1564a34f3dde249679e76b283f03 to your computer and use it in GitHub Desktop.
Makefile for Vapor using Watchman to restart on change.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
all: build run | |
clean: | |
@vapor clean | |
build: | |
@vapor build | |
run: | |
@vapor run | |
watch: | |
@watchman-make -p 'Resources/**/*.*' 'Public/**/*.*' 'Sources/**/*.*' -t 'all' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment