diff options
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | Makefile | 5 | 
2 files changed, 5 insertions, 1 deletions
| @@ -2,6 +2,7 @@ vendor/  static/  bin/  media_cache/ +templates/*.qtpl.go  .env  *.db @@ -8,7 +8,7 @@ GO_RUN=go run -v  all: build -build: sass +build: sass tmpl  	$(GO_BUILD) -o $(OUT) $(SERVER)  compress: build @@ -29,6 +29,9 @@ sass:  		-I scss scss/main.scss static/main.css \  		--style compressed +tmpl: +	qtc -dir=./templates +  test: test.unit test.integration  test.all: gci test.unit test.integration lint | 
