diff options
| author | Ruben Beltran del Rio <ruben@unlimited.pizza> | 2021-12-19 14:21:33 +0100 |
|---|---|---|
| committer | Ruben Beltran del Rio <ruben@unlimited.pizza> | 2021-12-19 14:21:33 +0100 |
| commit | 5d9f7190bd118fe4d44594d7a9584de98b527467 (patch) | |
| tree | c323938b4626290a227a652380af769d7f4c4518 /Makefile | |
| parent | 29f687276d9e9ef01ce70ebd210a01386ca581ae (diff) | |
Port to svelte
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..32fcfc2 --- /dev/null +++ b/Makefile @@ -0,0 +1,18 @@ +environment = development + +default: preview + +dev: docker-build + docker-compose run corona run dev -- --host + +build: docker-build + docker-compose run corona run build + +update-dependencies: + docker-compose run corona install + +docker-build: + docker-compose build + +upload: build + docker-compose run --entrypoint=/bin/sh corona ./scripts/upload.sh |