feat: list markdown files

This commit is contained in:
2025-10-17 17:43:18 +03:00
parent 0cc9367327
commit a256c3e16f
9 changed files with 153 additions and 81 deletions

View File

@@ -9,7 +9,7 @@ bun = "latest"
[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"'
'tmux new-window "cd api; go install; PORT=8912 air"',
'tmux split-window "cd frontend; bun install; PORT=8913 bun src/index.tsx"',
'xdg-open "http://localhost:8913" || open "http://localhost:8913"'
]