Add small dev helper
All checks were successful
Build Container / build (push) Successful in 3m51s

This commit is contained in:
Sami Abuzakuk
2025-11-01 16:06:01 +01:00
parent e9d94f706c
commit 8eef535e02

12
start.sh Executable file
View File

@@ -0,0 +1,12 @@
#!/bin/sh
SESSION="project_monitor"
tmux new-session -d -s $SESSION
tmux send-keys -t $SESSION "cd backend && uvicorn backend:app --reload" C-m
tmux split-window -h -t $SESSION
tmux send-keys -t $SESSION:0.1 "cd frontend && npm run dev" C-m
tmux attach -t $SESSION