diff options
| author | Ruben Beltran del Rio <ruben@unlimited.pizza> | 2021-10-16 15:12:32 +0200 |
|---|---|---|
| committer | Ruben Beltran del Rio <ruben@unlimited.pizza> | 2021-10-16 15:12:32 +0200 |
| commit | f7f0ed4c2a195ee3b7fc0e8acb0283c817a0f927 (patch) | |
| tree | 4bca74146865e9534e1fec95feccfa2980c84660 /Makefile | |
| parent | d0753b3a9711f554331d72f90618605f7c714d55 (diff) | |
Add the CI deployment files
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..40b3f4e --- /dev/null +++ b/Makefile @@ -0,0 +1,18 @@ +environment = development + +default: preview + +dev: docker-build + docker-compose run unlimited.pizza run dev -- --host + +build: docker-build + docker-compose run unlimited.pizza run build + +update-dependencies: + docker-compose run unlimited.pizza install + +docker-build: + docker-compose build + +upload: build + docker-compose run --entrypoint=/bin/sh unlimited.pizza ./scripts/upload.sh |