12 lines
146 B
Makefile
12 lines
146 B
Makefile
.PHONY: watch serve play
|
|
|
|
watch:
|
|
watchexec -e gleam gleam build
|
|
|
|
serve:
|
|
python3 dev_server.py
|
|
|
|
play:
|
|
gleam build
|
|
python3 -m http.server 3000
|
|
|