DEV Community

Discussion on: Run Multiple Make Targets Concurrently

Collapse
 
rdurkacz profile image
rdurkacz

I think you could achieve the same result just using the shell, as follows-
python manage.py runserver 8000 &
google-chrome --new-window localhost:8000 &

or more economically-
nohup python manage.py runserver 8000 &
nohup google-chrome --new-window localhost:8000 &

because you could then close the terminal