Hacker News new | ask | show | jobs
by AndreFvchs 2417 days ago
Sounds awesome! Can you please share the bash script?
1 comments

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.