forked from immichFrame/ImmichFrame
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
28 lines (19 loc) · 705 Bytes
/
Makefile
File metadata and controls
28 lines (19 loc) · 705 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
28
.PHONY: docs
.PHONY: immichFrame.Web
dev:
dotnet run --project ./ImmichFrame.WebApi
test-webapi:
dotnet test ./ImmichFrame.WebApi.Tests/ImmichFrame.WebApi.Tests.csproj
test-core:
dotnet test ./ImmichFrame.Core.Tests/ImmichFrame.Core.Tests.csproj
docs:
npm --prefix docs run start
api:
curl http://localhost:5217/swagger/v1/swagger.json -o ./openApi/swagger.json
npm --prefix immichFrame.Web run api
docker-build-prod:
docker buildx build --platform linux/amd64 --no-cache . --target final -t ghcr.io/immichframe/immichframe:latest --build-arg VERSION=1.0.0.0
docker-prod:
docker compose -f ./docker/docker-compose.yml up --build -V --remove-orphans
docker-prune:
docker system prune -a