chore: init

This commit is contained in:
2025-10-17 12:30:30 +03:00
commit 0cc9367327
22 changed files with 752 additions and 0 deletions

15
mise.toml Normal file
View File

@@ -0,0 +1,15 @@
[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"'
]