summaryrefslogtreecommitdiffstats
path: root/start
blob: 05ff5c6cf1a73f1166b530a68f7acdf6bac8b146 (plain) (blame)
1
2
3
4
5
6
#!/bin/sh
open_in_terminal() {
	st -e sh -c "cd $(pwd); $1"
}
open_in_terminal 'npm run dev' &
open_in_terminal 'php -S 0.0.0.0:8000' &