site

Website's source files.
Log | Files | Refs | Submodules | LICENSE

commit b5b73a258d5e2b21a6984e7e49412339e0dade14
parent caea8ced2615bc94e762d69ffe4845d08a7e2bc1
Author: Ryan Jeffrey <ryan@ryanmj.xyz>
Date:   Sat, 22 Jan 2022 14:24:44 -0800

Added makefile

Diffstat:
AMakefile | 12++++++++++++
1 file changed, 12 insertions(+), 0 deletions(-)

diff --git a/Makefile b/Makefile @@ -0,0 +1,12 @@ +# Makefile for Ryan's Blog + +.PHONY: all publish publish_no_init + +all: publish + +publish: + @echo "Publishing normal configuration" + tsc + +run: publish + @exec node bin/server.js