Creating a Django Project
What is a Django Project?
A Django project is a collection of settings for an instance of Django.
How to Create a Django Project?
1. Activate your virtual environment
Before creating a project, you have to activate your virtual environment. A virtual environment helps isolate your project's dependencies from your global Python installation.
2. Navigate to the source code directory
Let us use the Gen EMR project (an electronic medical record) as an example. We set up a dedicated folder to store the source code. Open up your terminal and navigate to the directory below:
1 2 3 |
|
3. Start a new Django project
We want to create a Django project called gen_emr
. Run the following command to create a new project:
1 |
|
This creates a directory named gen_emr
with the following structure:
1 2 3 4 5 6 7 8 9 10 11 |
|
-
__init__.py: An empty file that tells Python that this directory is a Python package.
-
manage.py: A command-line utility to interact with your project.
-
settings.py: Configuration for your project (e.g., database, middleware, templates).
-
urls.py: Routing system for your project.
-
asgi.py and wsgi.py: Interfaces for web servers to serve your project.
How to Confirm the Django Project is Working?
1. Navigate to the Django project directory
In your terminal, navigate to the directory below:
1 2 3 4 |
|
2. Run the development server
Type in the following command to run the Django's development server:
1 |
|
Terminal output:
1 2 3 4 5 6 7 8 9 10 11 |
|
3. Check out your Django project live
Open a browser and navigate to http://127.0.0.1:8000/. You should see the Django welcome page.