dev server - siggame/discuss GitHub Wiki
Once everything has been fetched and built with buildout, let's turn on the development server so we can develop!
Follow the following commands from the project root:
cd bin
python django migrate
- This migrates the database
python django runserver
The django server will now be running at 127.0.0.1:8000
. Visiting this address in a web browser will display whatever view /
is mapped to in urls.py