I have two different python project placed in different folder (project 1 in pydir1
directory, project 2 in pydir2
directory).
Every time, I need to open two new terminal and run the python manage.py runserver
command after change to the project directory.
Open 1st terminal window and
cd pydir1
python manage.py runserver 8000
and then open 2nd terminal windows and
cd pydir2
python manage.py runserver 8001
Is there a easier way to do it, at the same time able to see the log progress in the terminal windows?