-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathTiltfile
More file actions
29 lines (25 loc) · 591 Bytes
/
Tiltfile
File metadata and controls
29 lines (25 loc) · 591 Bytes
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
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(
"install",
"bun install",
)
local_resource(
"build",
"bun run build",
auto_init=False,
trigger_mode=TRIGGER_MODE_MANUAL
)
local_resource(
"build:watch",
serve_cmd="bun build:watch",
auto_init=False,
trigger_mode=TRIGGER_MODE_MANUAL
)
local_resource(
"test",
"bun test",
auto_init=False,
trigger_mode=TRIGGER_MODE_MANUAL
)