Skip to content

HaddoucheMilissa/emails_django

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Emails_Django

Prerequisites

Before you begin, ensure you have the following installed on your machine:

  • Git: Make sure Git is installed. You can download it from git-scm.com.
  • Python: You need Python 3.x installed. You can download it from python.org.
  • pip: This is usually included with Python installations. It is used to install Python packages.

Cloning the Repository

  1. Open your terminal (or command prompt).

  2. Navigate to your desired directory (like your desktop):

    • Windows:
      cd C:\Users\Lenovo\OneDrive\Bureau
    • Mac/Linux:
      cd /Desktop
  3. Clone the repository

    git clone https://github.com/HaddoucheMilissa/Django_bootcamp.git
    
    
  4. **Navigate into the cloned project folder:

    cd Django_Bootcamp
    

Setting Up the Virtual Environment

  1. Create a Virtual Environment:
    python -m venv name_your_Env
  1. Activate the Virtual Environment:

    • Windows:
    name_your_Env\Scripts\activate
    
  • Mac/Linux:
    source name_your_Env/bin/activate

Installing Django

After activating the virtual environment, you can install Django by running the following command:

pip install django

Confirming the Installation

django-admin --version

Running the project

django-admin startproject Name_your_project 

Starting the Development Server

cd Name_your_project 
python manage.py runserver

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published