Skip to content

Commit

Permalink
refactor: apply 'run_apps' properly
Browse files Browse the repository at this point in the history
  • Loading branch information
vindard committed Feb 9, 2024
1 parent ffa2366 commit 464a390
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions dev/Tiltfile
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ local_resource(
'http://localhost:3001/api/auth/callback/blink',
],
allow_parallel = True,
auto_init = run_apps,
resource_deps = [
"hydra",
"api",
Expand All @@ -71,7 +70,6 @@ local_resource(
'http://localhost:3000',
],
allow_parallel = True,
auto_init = run_apps,
resource_deps = [
"hydra",
"api",
Expand Down Expand Up @@ -372,6 +370,7 @@ local_resource(
serve_env = pay_env,
deps = _buck2_dep_inputs(pay_target),
allow_parallel = True,
auto_init = run_apps,
resource_deps = [
"api",
],
Expand All @@ -397,6 +396,7 @@ local_resource(
env = admin_panel_env,
serve_env = admin_panel_env,
deps = _buck2_dep_inputs(admin_panel_target),
auto_init = run_apps,
allow_parallel = True,
resource_deps = [
"api",
Expand All @@ -423,6 +423,7 @@ local_resource(
serve_env = map_env,
deps = _buck2_dep_inputs(map_target),
allow_parallel = True,
auto_init = run_apps,
resource_deps = [
"api",
"apollo-router",
Expand Down

0 comments on commit 464a390

Please sign in to comment.