You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
404 B

  1. # simple bash script to run the system locally without Docker
  2. SESSION='CommonRoutes_Dev'
  3. tmux new-session -d -s $SESSION
  4. tmux split-window -d -t 0 -v
  5. tmux split-window -d -t 0 -h
  6. tmux split-window -d -t 2 -h
  7. tmux send-keys -t 0 'node server.js' enter
  8. tmux send-keys -t 1 'cd ../commonroutesApp && ionic serve' enter
  9. tmux send-keys -t 2 'cd ../commonroutesAdminWeb && http-server' enter
  10. tmux attach