-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathjustfile
More file actions
20 lines (18 loc) · 804 Bytes
/
justfile
File metadata and controls
20 lines (18 loc) · 804 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
lint:
yew-fmt ./client_2048/src/*.rs
release-build:
APP_ORIGIN=https://2048.blue trunk build --config ./client_2048/Trunk.toml --release
cp ./production_configs/oauth-client-metadata.json ./client_2048/dist/oauth-client-metadata.json
echo "/oauth-client-metadata.json /oauth-client-metadata.json" > ./client_2048/dist/_redirects
release:
#trunk build --config ./client_2048/Trunk.toml --release
docker buildx build \
--platform linux/arm64 \
-t fatfingers23/at_2048_appview:latest \
-f dockerfiles/AppView.Dockerfile \
--push .
docker buildx build \
--platform linux/arm64 \
-t fatfingers23/at_2048_web_server:latest \
-f dockerfiles/Caddy.Dockerfile \
--push .