At the NYC Python/PyLadies mini-sprint, one of the attendees was following the instructions in the documentation to set up his development environment. He was confused about whether make serve and make initdb should be run sequentially or simultaneously.
I have always been running the commands simultaneously (I run make serve, and while that is printing things to stdout I run make initdb in another terminal window). It's always worked for me. Should we tell people to run the commands simultaneously in the documentation?
At the NYC Python/PyLadies mini-sprint, one of the attendees was following the instructions in the documentation to set up his development environment. He was confused about whether
make serveandmake initdbshould be run sequentially or simultaneously.I have always been running the commands simultaneously (I run
make serve, and while that is printing things to stdout I runmake initdbin another terminal window). It's always worked for me. Should we tell people to run the commands simultaneously in the documentation?