Skip to content

Commit

Permalink
chore: Comment out core
Browse files Browse the repository at this point in the history
  • Loading branch information
k3yss committed Dec 6, 2024
1 parent 0e4ea3c commit 78ecd01
Showing 1 changed file with 25 additions and 25 deletions.
50 changes: 25 additions & 25 deletions dev/Tiltfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,31 +13,31 @@ for service, deps in docker_groups.items():
for dep in deps:
dc_resource(dep, labels=[service])

local_resource(
"core",
labels=["core"],
serve_cmd="cd .. && make run-server",
serve_env={
"PG_CON": "postgres://user:password@localhost:5433/pg",
"OTEL_EXPORTER_OTLP_ENDPOINT": "http://localhost:4317",
},
readiness_probe=probe(
period_secs=5,
http_get=http_get_action(
path="/admin/graphql",
port=4455,
),
),
allow_parallel=True,
resource_deps=[
"cala",
"core-pg",
"cala-pg",
],
links = [
link("http://localhost:4455/admin/graphql", "playground"),
]
)
#local_resource(
# "core",
# labels=["core"],
# serve_cmd="cd .. && make run-server",
# serve_env={
# "PG_CON": "postgres://user:password@localhost:5433/pg",
# "OTEL_EXPORTER_OTLP_ENDPOINT": "http://localhost:4317",
# },
# readiness_probe=probe(
# period_secs=5,
# http_get=http_get_action(
# path="/admin/graphql",
# port=4455,
# ),
# ),
# allow_parallel=True,
# resource_deps=[
# "cala",
# "core-pg",
# "cala-pg",
# ],
# links = [
# link("http://localhost:4455/admin/graphql", "playground"),
# ]
#)

#local_resource(
# "admin-panel",
Expand Down

0 comments on commit 78ecd01

Please sign in to comment.