Moving from Django installation done on Day 6, we move to “Building an Hello World Application with Python/Django” and execute following steps:
- mkdir my_django_project # Create my_django_project directory
- cd my_django_project # Change working directory into my_django_project directory
- django-admin startproject helloworld_project # Create a new project named helloworld_pr
- python manage.py runserver # Run the django server
- python manage.py migrate
Let us keep Day 7 short!
2 thoughts on “Day 7: Exploring Python with Projects”