One-line launch anything from Mac OS
Consider you have a monorepo with Next.js frontend and FastAPI backend:
1 | gitww/ |
1. Run Backend (FastAPI)
run-backend.sh
1 | echo -ne "\033]0;gitww-backend\007" |
2. Run Frontend (Next.js)
run-frontend.sh
1 | echo -ne "\033]0;gitww-frontend\007" |
Permissions
You must add ‘x’ permission to the scripts, in order to run on Mac:
1 | chmod +x /usr/local/hub/gitww/backend-fastapi/run-backend.sh |
Now, test:
1 | open -a iTerm /usr/local/hub/gitww/frontend-nextjs/run-frontend.sh \ |
Important to note that, you launched 2 iTerm with 1 line, with the help of &
.
3. One-line Launch
Make a top-level script:
run-gitww.sh
1 | cursor /usr/local/hub/gitww/ \ |
4. Alias
Edit your vi ~/.zshrc
or vi ~/.bashrc
:
1 | alias gitww="zsh /usr/local/hub/gitww/run-gitww.sh" |
Or, if you don’t mind long command:
1 | alias gitww="cursor /usr/local/hub/gitww/ && open -a iTerm /usr/local/hub/gitww/frontend-nextjs/run-frontend.sh && open -a iTerm /usr/local/hub/gitww/backend-fastapi/run-backend.sh && open 'http://localhost:3462/'" |
Now, simply run gitww
to launch frontend, backend, Chrome, and Cursor.
Final Notes
&
= run parallelly.
run-gitww.sh
must be 1-line command with&
concatenation.- Need everything to be launched simultaneously.
run-backend.sh
andrun-frontend.sh
are multi-step commands- It’s mimicing a human’s workflow.