Whithout exiting the comand prompt, create the necessary project folders with:
django-admin startproject ecommerce
Files created by the command
A django site is composed of many "apps" (sub-sites) that contain major features of the main site. Ex: a blog would be a separate "app" from a online store as they have significantly different features
In order to perform actions and tests we always need to be located inside the main ecommerce directory.
To create our first "app" (the store website), we need to run the following command that will create the folders and files necessary for its creation:
Lastly, in order to run the app localy use the following command: