-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathTiltfile
More file actions
81 lines (70 loc) · 1.5 KB
/
Tiltfile
File metadata and controls
81 lines (70 loc) · 1.5 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
v1alpha1.extension_repo(name='omni', url='https://github.com/omnidotdev/tilt-extensions')
v1alpha1.extension(name='dotenv_values', repo_name='omni', repo_path='dotenv_values')
load('ext://dotenv_values', 'dotenv_values')
local_resource(
"dev",
serve_cmd="bun dev --filter @omnidotdev/rdk",
)
local_resource(
"dev-demo-fiducial",
serve_cmd="bun dev --filter rdk-fiducial-demo",
auto_init=False,
trigger_mode=TRIGGER_MODE_MANUAL,
labels=["demo-fiducial"]
)
local_resource(
"dev-demo-geolocation",
serve_cmd="bun dev --filter rdk-geolocation-demo",
auto_init=False,
trigger_mode=TRIGGER_MODE_MANUAL,
labels=["demo-geolocation"]
)
local_resource(
"dev-demo-immersive",
serve_cmd="bun dev --filter rdk-immersive-demo",
auto_init=False,
trigger_mode=TRIGGER_MODE_MANUAL,
labels=["demo-immersive"]
)
local_resource(
"build",
"bun run build",
auto_init=False,
trigger_mode=TRIGGER_MODE_MANUAL
)
local_resource(
"lint",
"bun lint",
auto_init=False,
trigger_mode=TRIGGER_MODE_MANUAL
)
local_resource(
"format",
"bun format",
auto_init=False,
trigger_mode=TRIGGER_MODE_MANUAL
)
local_resource(
"clean",
"bun clean",
auto_init=False,
trigger_mode=TRIGGER_MODE_MANUAL
)
local_resource(
"install",
"bun install",
auto_init=False,
trigger_mode=TRIGGER_MODE_MANUAL
)
local_resource(
"knip",
"bun knip",
auto_init=False,
trigger_mode=TRIGGER_MODE_MANUAL
)
local_resource(
"test",
"bun run test",
auto_init=False,
trigger_mode=TRIGGER_MODE_MANUAL
)