This repository was archived by the owner on Feb 6, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 271
Expand file tree
/
Copy pathBUCK
More file actions
95 lines (82 loc) · 1.82 KB
/
BUCK
File metadata and controls
95 lines (82 loc) · 1.82 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
load(
"@prelude-si//:macros.bzl",
"alias",
"test_suite",
"tilt_docker_compose_pull",
"tilt_docker_compose_stop",
"tilt_down",
"tilt_up",
"yapf_check",
)
python_bootstrap_binary(
name = "healthcheck",
main = "healthcheck.py",
visibility = ["PUBLIC"],
)
alias(
name = "dev",
actual = ":up",
)
# Bring up the full set of services for development (defaults to release build optimizations)
tilt_up(
name = "up",
)
# Bring up the full set of services for development with standard build optimizations
tilt_up(
name = "up-standard",
args = [
"--standard-rustc-build-mode",
],
)
# Bring up the full set of services for development with debug build optimizations
tilt_up(
name = "up-debug-all",
args = [
"--debug-rustc-build-mode",
],
)
# Bring up the full set of services for development with debug build optimizations, except for
# rebaser
tilt_up(
name = "up-debug",
args = [
"--debug-no-rebaser-rustc-build-mode",
],
)
# Bring up only platform services such as PostgreSQL, NATS, etc.
tilt_up(
name = "platform",
args = [
"platform",
"telemetry",
"testing",
],
)
# Pull for new Docker images
tilt_docker_compose_pull(
name = "pull",
docker_compose_file = "docker-compose.platform.yml",
)
# Stop any remaining/running services while attempting to preserve persistent state
tilt_docker_compose_stop(
name = "stop",
docker_compose_file = "docker-compose.platform.yml",
)
# Bring down any remaining/running services
tilt_down(
name = "down",
)
yapf_check(
name = "check-format-python",
srcs = glob(["**/*.py"]),
)
test_suite(
name = "check-format",
tests = [
":check-format-python",
],
)
export_file(
name = "minica.pem",
visibility = ["PUBLIC"],
)