Re: What to do after python manage.py runserver

2014-03-04 Thread Bill Freeman
Or you can share the one terminal by stopping the server to run other commands, then do runserver again to test them. The startup message should have told you how to stop (exit, kill) the server. On linux it's control-C. That may work elsewhere too. (Just for completeness, in an emacx shell win

Re: What to do after python manage.py runserver

2014-03-04 Thread Thomas Murphy
Hi Matthew, You'll want to leave the window you typed runserver in open so your app can print information about it's activities to that window. Open another terminal window and proceed from there. Happy Hacking! Thomas On Tue, Mar 4, 2014 at 4:50 PM, Matthew Epps wrote: > Hey all, > > I apol

What to do after python manage.py runserver

2014-03-04 Thread Matthew Epps
Hey all, I apologize for the extremely basic question. I am new to django and python. But after I enter the "python manage.py runserver" command, my terminal prints out the message that the tutorial says I should expect. However, I have a difficult time entering the other commands on the tutor