gev: Run code instead of producing a binary

Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
Knut Ahlers 2025-05-01 10:47:11 +02:00
parent 401d79c7b5
commit b447417d0f
No known key found for this signature in database

View file

@ -23,7 +23,6 @@ local_resource(
# Rebuild and run Go webserver on code changes
local_resource(
'server',
cmd='go build .',
deps=[
'api.go',
'frontend',
@ -35,7 +34,7 @@ local_resource(
'go.mod', 'go.sum',
],
ignore=['ots', 'src'],
serve_cmd='./ots --listen=:15641',
serve_cmd='go run . --listen=:15641',
serve_env={
'CUSTOMIZE': 'customize.yaml',
},