-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
24 lines (24 loc) · 1.07 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
.PHONY: build build2
build:
(cd capability_providers/game-provider && make push)
(cd capability_providers_officials/nats && make push)
(cd actors/game_chat && make clean_wasm && make push)
(cd actors/game_logic2 && make clean_wasm && make push)
(cd actors/game_player_health_check && make clean_wasm && make push)
wash ctl apply NDP4B6DPQICPNEA3UJ7FOG4KR66Y56JCKNASH6UXWZECNNYFTVYJ4ROS ops/manifest.yaml
build2:
(cd actors/game_logic2 && make start-thread)
serve_ui:
#(cd nat-example && cargo make wasm-bindgen)
#(cd nat-example && nohup basic-http-server public -a 127.0.0.1:4001 >> nohup.out 2>&1 &)
(cd nat-example && cargo make wasm-serve)
build_aws_old:
(cd capability_providers_officials/nats && make push)
(cd actors/game_logic2 && make clean_wasm && make push)
wash ctl apply NDP4B6DPQICPNEA3UJ7FOG4KR66Y56JCKNASH6UXWZECNNYFTVYJ4ROS ops/manifest.aws.yaml
sleep 15
(cd actors/game_logic2 && make start-thread)
build_aws:
wash ctl apply NDP4B6DPQICPNEA3UJ7FOG4KR66Y56JCKNASH6UXWZECNNYFTVYJ4ROS ops/manifest.aws.yaml
sleep 15
(cd actors/game_logic2 && make start-thread)