I have a mini project that I’d like to start on port 2000. How do I do this?
Also, how would I set up the project with an existing database?
What Django books did you find helpful?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
When you’re in the directory you want to be in…
python ./manager.py runserver 2000You can sync a given database by adding the name to
DATABASE_NAMEin settings.py, as well as doing apython manager.py syncdbin the terminal.Also, a quick google would have led you to the Django Book. I don’t understand how you haven’t come across this yet?