diff options
| author | Ruben Beltran del Rio <ruben@unlimited.pizza> | 2021-12-20 00:11:18 +0100 |
|---|---|---|
| committer | Ruben Beltran del Rio <ruben@unlimited.pizza> | 2021-12-20 00:11:18 +0100 |
| commit | 92ccd82c73463fa0b67996dc9212e992f90a1454 (patch) | |
| tree | 456f16a2a88c3f9613c9eaf3dcdf3876aa36d689 /Makefile | |
| parent | 55fd5e33b1430fd6498f476490da6b5fa6abd70c (diff) | |
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..49d0348 --- /dev/null +++ b/Makefile @@ -0,0 +1,18 @@ +environment = development + +default: preview + +dev: docker-build + docker-compose run lgtm run dev -- --host + +build: docker-build + docker-compose run lgtm run build + +update-dependencies: + docker-compose run lgtm install + +docker-build: + docker-compose build + +upload: build + docker-compose run --entrypoint=/bin/sh lgtm ./scripts/upload.sh |