Listings App
Learn how to create a simple Django web app.
Create project
In order to create a Django web app, we need to implement a few things. First of all, we need to issue the following commands in our desired directory.
django-admin startproject example .
python manage.py startapp listings
The first command creates a folder with the main Python files needed for our project. The dot (.
) at the end of the command is easy to miss but is important. The dot (.
...