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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# Local celld worker: rebuild WASM, deploy to Azurite, restart the node.
#
# make reload worker-build --dev + celld deploy + compose restart
# make watch cargo-watch the above (waits for the first source change)
#
# CELLD_WATCH in docker-compose is the node's SQLite/replication dir, not
# a source watcher. Nodes load a deployment at startup, so deploy is not
# enough — this target restarts the celld container after each deploy.
:
REPO_ROOT :=
COMPOSE ?=
CELLD_HTTP_PORT ?=
:AZURE_STORAGE_USE_EMULATOR ?=
AZURE_STORAGE_ACCOUNT_NAME ?=
AZURE_STORAGE_ACCOUNT_KEY ?=
:
# Debug wasm is faster to iterate than the --release used by up-celld-nats.
:
:
: :