-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathMakefile
More file actions
27 lines (20 loc) · 754 Bytes
/
Makefile
File metadata and controls
27 lines (20 loc) · 754 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
install:
docker volume create nodemodules && docker compose -f local.builder.yml run --rm install
npmlist:
docker compose -f local.builder.yml run --rm npmlist
build:
docker compose -f local.builder.yml run --rm build
build-browser-test:
docker compose -f local.builder.yml build browser-test
dev:
docker compose -f local.yml up documentcloud_frontend
preview:
docker compose -f local.yml up preview
down:
docker compose -f local.yml down
clean:
@echo deleting Webpack chunks
rm -f public/index.html public/[0-9]*.*.* public/bundle.*.js public/bundle.*.css public/bundle.*.txt public/*.map public/*.*.js
rm -rf public/assets public/notes public/viewer public/embed
@echo deleting built files
rm -rf build .svelte-kit playwright-report