Files
papercrate/papercrate.tmux
T
2025-10-30 16:21:52 +01:00

12 lines
413 B
Bash

# tmux session for Papercrate dev stack
new-session -d -s papercrate -n docker -c . 'docker compose -f docker-composer.dev.yml up'
new-window -t papercrate:1 -n frontend -c ./frontend 'npm run dev'
new-window -t papercrate:2 -n backend -c ./backend 'cargo run --bin backend'
new-window -t papercrate:3 -n worker -c ./backend 'cargo run --bin worker'
select-window -t papercrate:0
attach-session -t papercrate