|
|
|
|
|
by seanwilson
2417 days ago
|
|
Put a function in your bash profile script along the lines of this, where you open up everything you need for a project to going: function project123() {
path=~/Documents/project123
cd $path
code $path # open IDE
stree $path # open SourceTree
chrome "localhost:8080"&
gulp # Start local server
}
Then just type "project123" in bash to run it. Create a new one for each project. |
|