16 lines
303 B
TOML
16 lines
303 B
TOML
[tools]
|
|
go = "latest"
|
|
bun = "latest"
|
|
|
|
[env]
|
|
# PORT = "8912" # api port
|
|
# FRONTEND_PORT = "8913"
|
|
|
|
[tasks.dev]
|
|
description = 'Run BE & FE in tmux'
|
|
run = [
|
|
'tmux new-window "cd api; PORT=8912 air"',
|
|
'tmux split-window "cd frontend; PORT=8913 bun run dev"',
|
|
'xdg-open "http://localhost:8913"'
|
|
]
|