Skip to content

Latest commit

 

History

History
14 lines (13 loc) · 378 Bytes

README.md

File metadata and controls

14 lines (13 loc) · 378 Bytes

playing-with-django

To run the app (using mkvirtualenv):

$> cd StarWarsEncyclopedia
$> mkvirtualenv StarWarsEncyclopedia
$> pip install --upgrade pip
$> pip install -r requirements.txt
$> python manage.py makemigrations
$> python manage.py migrate
$> python manage.py createsuperuser
$> python manage.py runserver

And open http://localhost:8000/ in your browser.