A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://www.geeksforgeeks.org/python/django-creating-apps-set-2/ below:

Django - Creating apps | Set - 2

Django - Creating apps | Set - 2

Last Updated : 11 Jul, 2025

In the

previous article

, we discussed why apps are important in Django project management? What are the benefits of using Django apps? In this article, we will discuss what are we going to build and how do apps play a vital role in Django projects?

Project outline -

We will build a localhost e-commerce mobile phone website which can show us details like Flipkart. What can be details of a smart phone?

Making app -

From the above list, we can see that brand itself can be a different table in the database. For user's comfort, Django itself provides SQLite3 database which we will be using during this series. During deployment, we can use a different database. To read more about databases, check out

DataBase Management System

. To create an app for

brand

, run the following command in your terminal

python manage.py startapp brand

Now, brand folder should look like

What these files are?
__init__.py: This is a python package. admin.py: In python file, we will write code which will be relevant to admin. models.py: In this python file, we will write code which will be revolving around database handling. tests.py: In this python file, we can write test codes to test if changes done in our code is working fine or not before including them in our main code. views.py: In this python file, we will write what should user view on a webpage as name of file suggests. Migrations: It is a folder which will store all the changes that we will make in database. Initially, it is empty as it contains only __init__.py of its own and we haven't interacted with database yet.

Now, goto

geeks_site/settings.py

and in

INSTALLED_APPS

, add brand in it. It will integrate

brand app

to your project

geeks_site

.



RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4