OMG FEATURE PARITY WITH REACT

... almost. It looks identical, just some minor things to fix up.

Yes! the templates exist now and work!!

Add `clean` back to `make all` and use `-c` in `gsutil rsync`, which
will ignore mtime and use checksums when comparing files instead,
meaning we don't have to re-upload all of /media/ every time! (^_^)

Also fix a broken link to the kegerator project page
This commit is contained in:
Nick Pegg 2018-01-15 22:13:47 -08:00
parent 3d4e86c462
commit 7308419301
8 changed files with 304 additions and 3 deletions

View file

@ -1,4 +1,4 @@
all: clean build # TODO: add stage here one we can actually build something
all: clean build stage
clean:
rm -rf build
@ -7,6 +7,6 @@ build:
posty build
stage:
gsutil -m rsync -d -r build/ gs://test.nickpegg.com
gsutil -m rsync -c -d -r build/ gs://test2.nickpegg.com
# TODO: add a `publish` task when ready to roll to prod