Files
obi/mise.toml
2025-10-17 12:30:30 +03:00

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"'
]